When trying to compile my class I get an error:

The constant 'NamespaceName.ClassName.CONST_NAME' cannot be marked static.

at the line:

public static const string CONST_NAME = "blah";

I could do this all of the time in Java. What am I doing wrong? And why doesn't it let me do this?

link|improve this question

feedback

3 Answers

up vote 70 down vote accepted

const implies static.

link|improve this answer
1  
@jinguy: const inherently means static -- if you have any const, it's already static, and static therefore does not need to be nor cannot be specified. – John Rudy Jan 2 '09 at 22:40
1  
@jjnguy: Why? readonly is actually more flexible than Java's final for variables - you can set it as many times as you like in the constructor, but not elsewhere. That can be very handy. – Jon Skeet Jan 2 '09 at 23:01
1  
Consts are inlined at compile time and are not present in the static type object at runtime. Statics aren't inlined and live inside the type object. I add this just because nobody's mentioned the difference... – Will Jan 2 '09 at 23:07
1  
They're still present at execution time - you can get at them with reflection, for example (with GetField). – Jon Skeet Jan 2 '09 at 23:16
1  
@litb: Wow, I wish I had that sort of influence ;) I wouldn't use it for that though - I have no problem with disallowing redundancy. (It's like putting "public" on interface members. Ugh.) There are plenty of more important things to change in C#. Readonly autoproperties would be my first choice... – Jon Skeet Jan 3 '09 at 0:02
show 9 more comments
feedback

From the C# language specification (PDF page 287 - or 300th page of the PDF):

Even though constants are considered static members, a constant declaration neither requires nor allows a static modifier.

link|improve this answer
feedback

A const member is considered static by the compiler, as well as implying constant value semantics, which means references to the constant might be compiled into the using code as the value of the constant member, instead of a reference to the member.

In other words, a const member containing the value 10, might get compiled into code that uses it as the number 10, instead of a reference to the const member.

This is different from a static readonly field, which will always be compiled as a reference to the field.

Note, this is pre-JIT. When the JIT'ter comes into play, it might compile both these into the target code as values.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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