Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've read around about const and static readonly fields. We have some classes which contains only constant values. Used for various things around in our system. So I am wondering if my observation is correct:

Should these kind of constant values always be static readonly for everything that is public? And only use const for internal/protected/private values?

What do you recommend? Should I maybe even not use static readonly fields, but rather use properties maybe?

share|improve this question
15  
+1 i was just going to ask this one – TheVillageIdiot Aug 27 '09 at 7:49
2  
We were arguing about this at work and I thought, "Someone must've asked this on SO!", great question and clear concise answer. – HipsterZipster Jun 16 '11 at 18:43

6 Answers

up vote 235 down vote accepted

Public static readonly fields are a little unusual; public static properties (with only a get) would be more common (perhaps backed by a private static readonly field).

Const values are burned directly into the call-site; this is double edged:

  • it is useless if the value is fetched at runtime, perhaps from config
  • if you change the value of a const, you need to rebuild all the clients
  • but it can be faster, as it avoids a method call...
  • ...which might sometimes have been inlined by the JIT anyway

If the value will never change, then const is fine - Zero etc make reasonable consts ;-p Other than that, static properties are more common.

share|improve this answer
32  
Thanks Marc. Like alot of coders, I think I've just been randomly using which ever depending on my mood. – Dead account Apr 16 '09 at 11:32
1  
Why a property over a field? If it's an immutable class, I see no difference. – Michael Hedgpeth Apr 16 '09 at 11:32
16  
@Michael - same reasons as always; it hides the implementation. You may find (later) that you need to be lazy loaded, configuration based, a facade, or whatever. In reality, either would often be fine... – Marc Gravell Apr 16 '09 at 11:34
9  
@CoffeeAddict by definition, a constant is not pulling values from a config file; it is burned in as a literal at compile-time. The only way you can use a constant at runtime is via reflection over the fields. Any other time you try to use it, the compiler as already substituted your constant usage for literal usage; i.e. if a method in your code uses 6 constants, and you inspect it as IL, there will be no mention of any constant lookups; the literal values will simply be loaded in-situ – Marc Gravell Nov 28 '11 at 6:25
2  
@Mark: For constants, I don't see that using properties like this "public static int NumberOfWheels { get { return 4;}}" is actually more COMMON than using a public field like "static readonly int NumberOfWheels = 4;" Could you elaborate on your idea or possibly show a sample example of what you would see more often for this case? – Philibert Perusse Jul 19 '12 at 16:10
show 6 more comments

I would use static readonly if the Consumer is in a different assembly. Having the const and the consumer in two differen assemblies is a nice way to shoot yourself in the foot.

share|improve this answer
1  
So I think as some have mentioned or alluded to, it may be wise to only use const for values that are actually well known constants if they are made public otherwise they should be reserved for internal, protected, or private access scope. – jpierson Mar 9 '11 at 18:38

Some other things

const int a

  • must be initialized
  • initialization must be at compile time

readonly int a

  • can use default value, without initializing
  • initialization can be at run time
share|improve this answer

One thing to note is const is restricted to primitive/value types (the exception being strings)

share|improve this answer

My preference is to use const whenever I can, which as mentioned above is limited to literal expressions or something that does not require evaluation.

If I hot up against that limitation, then I fallback to static readonly, with one caveat. I would generally use a public static property with a getter and a backing private static readonly field as Marc mentions here.

share|improve this answer

The readonly keyword is different from the const keyword. A const field can only be initialized at the declaration of the field. A readonly field can be initialized either at the declaration or in a constructor. Therefore, readonly fields can have different values depending on the constructor used. Also, while a const field is a compile-time constant, the readonly field can be used for runtime constants

Short and clear MSDN reference here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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