Declaring a const double[] in C#?(在 C# 中声明一个 const double[]?)
问题描述
我有几个我使用的常量,我的计划是把它们放在一个双精度的 const 数组中,但是编译器不允许我这样做.
I have several constants that I use, and my plan was to put them in a const array of doubles, however the compiler won't let me.
我试过这样声明:
const double[] arr = {1, 2, 3, 4, 5, 6, 73, 8, 9 };
然后我决定将其声明为静态只读:
Then I settled on declaring it as static readonly:
static readonly double[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9};
但是问题仍然存在.为什么编译器不让我声明一个 const 值数组?或者会,我只是不知道怎么做?
However the question remains. Why won't compiler let me declare an array of const values? Or will it, and I just don't know how?
推荐答案
来自 MSDN (http://msdn.microsoft.com/en-us/library/ms228606.aspx)
常量表达式是一个表达式可以在编译时.因为只有这样创建 a 的非空值reference-type [an array] 是应用新的运算符,并且因为 new 运算符不允许在常量表达式,唯一可能的引用类型常量的值字符串以外的为空.
A constant-expression is an expression that can be fully evaluated at compile-time. Because the only way to create a non-null value of a reference-type [an array] is to apply the new operator, and because the new operator is not permitted in a constant-expression, the only possible value for constants of reference-types other than string is null.
这篇关于在 C# 中声明一个 const double[]?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C# 中声明一个 const double[]?
基础教程推荐
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01