vote up 2 vote down star

Hello!

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.

I have tried declaring it this way:

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};

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?

flag

79% accept rate

4 Answers

vote up 3 vote down check

From MSDN (http://msdn.microsoft.com/en-us/library/ms228606.aspx)

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.

link|flag
vote up 8 vote down

This is probably because

static const double[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9};

is in fact the same as saying

static const double[] arr = new double[]{ 1, 2, 3, 4, 5, 6, 7, 8, 9};

A value assigned to a const has to be... const. Every reference type is not constant, and a array is an reference type.

The solution my research showed was using an static readonly. Or, in your case with a fixed number of doubles, give everything a individual identifier.


Edit: A little sidenode, every type can be used const, but the value assigned to it must be const. For reference types, the only thing you can assign is null:

static const double[] arr = null;

But this is completely useless.

link|flag
Right on. See: msdn.microsoft.com/en-us/library/… – Ray Vernagus Jul 10 at 14:26
Exactly, like here: gamedev.net/community/forums/… – Dykam Jul 10 at 14:27
String is a reference type, and you can have constant strings... – Jon Skeet Jul 10 at 14:27
@Jon: Strings are immutable. – Sean Nyman Jul 10 at 14:29
1  
Clarification: my meaning is that while strings are reference types, since they're immutable it makes sense that they can be constant. – Sean Nyman Jul 10 at 14:32
show 1 more comment
vote up 1 vote down

The compiler error tells you exactly why you can't do it:

'arr' is of type 'double[]'.
A const field of a reference type other than string can only be initialized with null.

link|flag
vote up 0 vote down

The problem is that you're declaring a constant array of double, not an array of constant doubles. I don't think there is a way to have an array of constants due to the way arrays work in C#.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.