vote up 2 vote down star

Why does C# not allow const and static on the same line? In Java, you must declare a field as 'static' and 'final' to act as a constant. Why does C# not let you declare const's as final?

I make the further distinction that in Java, every interface is public and abstract, whether this is explicitly declared or not. Aren't const's effectively static in nature? WHy does C# balk at this?

flag

I thought you said you had swapped back to Jave. So why would care! ;) – Mitch Wheat May 9 at 3:53
B/c now I'm curious =) I really don't understand why it's a compile error if it's just a matter of explicitly stating that which is inherently true. – Cuga May 9 at 4:03
Mmm maybe because Java doesn't support constants directly so that's why you have to use static const to achieve a constant .. whereas const in c# are static by nature like Greg mentioned and are set at compile time. Some people confuse static readonly in c# which can have the value set at runtime. – jasonco May 9 at 4:23
It's "static final" in Java... there is no "const" keyword (just being anal). Still, it strikes me as odd that it would say "error" when it's not like the developer is totally off base. Maybe there's no reason for it, but it made me curious. – Cuga May 9 at 4:29
Yes, you are right... it's const final in java I got careless writing so fast hehe. – jasonco May 9 at 4:42

4 Answers

vote up 7 vote down check

const and static really do mean different things, different storage mechanism, different initialisation. static is read/write, therefore must have memory allocated for storage and must be initialised at runtime. A static can be initialised with a literal value or an expression. In contrast, a const must be initialised with a literal value and is immutable. The value is known at compile time so it can be embedded directly in the generated code, therefore requires no storage to be allocated at runtime.

link|flag
True, const and static mean different things. But 'const' and 'static final'... what's the difference there? – Cuga May 9 at 4:30
The question relates to C# - there is no 'final' keyword in C#. – Tim Long May 9 at 4:43
While the original question was 'const' vs 'static final' (not just static and therefore both are denied 'write' permission), you've convinced me that memory allocation or something along these lines must be the reason. – Cuga May 9 at 13:27
vote up 0 vote down

It is true that a C# const implies static BUT, C# has an equivalent to Java's final keyword in the keyword readonly.

So, in fact, C# allows a const final, it is static readonly in C#.

link|flag
1  
"static readonly" is not the same as "const". A constant will be compiled as is. static readonly will be referened from the original location. If the value may posible change in the future or even at instanation you should use readonly. If it will truly be constant and never change (such as Natural Log, Pi, etc) then const is a good choice. Otherwises you may be better of with "public static readonly" – Matthew Whited May 9 at 5:20
I'm sorry, I was referring to "static final" in Java equals "static readonly" in C# (roughly). – LWoodyiii May 13 at 19:07
vote up 1 vote down

Because allowing and not requiring modifiers that are inherent can cause confusion. If you see

static const int A = 3
const int B = 5

you may believe that they are 2 different kinds of constants.
Even VB 2008 (which can be very verbose if you wish) doesn't allow that.

link|flag
That's not the reason (though you may be right about it being confusing). For example, if I declare a field and don't give it any access modifiers, is it public, private, static, internal, what? The default is private, but you don't have to declare that explicitly. The reason static and const can't be used together is because they imply different storage mechanisms and are therefore mutually exclusive. – Tim Long May 9 at 4:51
vote up 7 vote down

Constants by their nature are static, so that would be redundant.

link|flag
Right, but like I said... Java lets you declare an interface as 'public' and 'abstract'. It's inherent, so it's not an error. So why is it an error in C# if you explicitly denote what is inherent? – Cuga May 9 at 4:02
4  
Reducing unnecessary choice is good idea in general, IMO. – Sake May 9 at 4:14
I'll give you that. I consider your comment to be the best answer so far. – Cuga May 9 at 4:31
3  
In a dictionary sense, constants are static, but in C# static refers to memory allocation, not the value. It's the memory allocation that is static (once, for all instances of the class). – Tim Long May 9 at 4:46

Your Answer

Get an OpenID
or

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