What is the difference between const and readonly and do you use one over the other?
|
Apart from the apparent diff of
There is a subtle difference. Consider a class defined in AssemblyA.
AssemblyB references AssemblyA and uses these values in code. When this is compiled,
So if you are confident that the value of the constant won't change use a const.
But if you have a constant that may change (e.g. w.r.t. precision).. or when in doubt, use a readonly.
Update: Aku needs to get a mention coz he pointed this out first. Also I need to plug where I learned this.. Effective C# - Bill Wagner |
|||||
|
|
There is a gotcha with consts! If you reference constant from other assembly it's value will be compiled right into calling assembly. That way when you update constant in referenced assembly it won't change in calling assembly! |
|||
|
|
Constants
Readonly instance fields
Static readonly fields
|
||||
|
|
|
This explains it. Summary: const must be initialized at declaration time, readonly can be initialized on the constructor (and thus have a different value depending on the constructor used). EDIT: See Gishu's gotcha above for the subtle difference |
||||
|
|
|
Just to add, ReadOnly for reference types only makes the reference readonly not the values. For example:
|
||||
|
|
|
A const is a compile-time constant whereas readonly allows a value to be calculated at run-time and set in the constructor or field initializer. So, a 'const' is always constant but 'readonly' is read-only once it is assigned. Eric Lippert of the C# team has more information on different types of immutability |
|||
|
|
|
Here's another link demonstrating how const isn't version safe, or relevant for reference types. Summary:
|
||||
|
There is a small gotcha with readonly. A readonly field can be set multiple times within the constructor(s). Even if the value is set in two different chained constructors it is still allowed.
|
|||
|
|
|
Variables marked const are little more than strongly typed #define macros, at compile time const variable references are replaced with inline literal values. As a consequence only certain built-in primitive value types can be used in this way. Variables marked readonly can be set, in a constructor, at run-time and their read-only-ness is enforced during run-time as well. There is some minor performance cost associated with this but it means you can use readonly with any type (even reference types). Also, const variables are inherently static, whereas readonly variables can be instance specific if desired. |
||||
|
|
Yet another gotcha: readonly values can be changed by "devious" code via reflection.
Can I change a private readonly inherited field in C# using reflection? |
|||
|
|
|
Constant : Can't be changed anywhere. Read only : This value can only be change in the contstructor. Can't be change in normal functions. |
||||
|
|
|
You can use const variables as input to attribute constructors but not readonly variables. Example:
|
|||
|
|
|
Another gotcha. Since const really only works with basic data types, if you want to work with a class, you may feel "forced" to use ReadOnly. However, beware of the trap! ReadOnly means that you can not replace the object with another object (you can't make it refer to another object). But any process that has a reference to the object is free to modify the values inside the object! So don't be confused into thinking that ReadOnly implies a user can't change things. There is no simple syntax in C# to prevent an instantiation of a class from having its internal values changed (as far as I know). |
|||
|
|
One of the team members in our office provided the following guidance on when to use const, static, and readonly:
One final note: a const field is static, but the inverse is not true. |
||||
|
|
|
Principally; you can assign a value to a static readonly field to a non-constant value at runtime, whereas a const has to be assigned a constant value. |
|||
|
|
|
A constant will be compiled into the consumer as a literal value while the static string will serve as a reference to the value defined. As an exercise, try creating an external library and consume it in a console application, then alter the values in the library and recompile it (without recompiling the consumer program), drop the DLL into the directory and run the EXE manually, you should find that the constant string does not change. |
|||||||||||||||
|
|
A
A
const Vs readonly, const,
readonly,
|
|||
|
|
|
I believe a |
|||
|
|
|
One thing to add to what people have said above. If you have an assembly containing a readonly value (e.g. readonly MaxFooCount = 4; ), you can change the value that calling assemblies see by shipping a new version of that assembly with a different value (e.g. readonly MaxFooCount = 5;) But with a const, it would be folded into the caller's code when the caller was compiled. If you've reached this level of C# proficiency, you are ready for Bill Wagner's book, Effective C#: 50 Specific Ways to Improve Your C# Which answers this question in detail, (and 49 other things). |
|||
|
|
|
The key difference is that Const is the C equivalent of #DEFINE. The number literally gets substituted a-la precompiler. Readonly is actually treated as a variable. This distinction is especially relevant when you have Project A depending on a Public constant from Project B. Suppose the public constant changes. Now your choice of const/readonly will impact the behavior on project A: Const: project A does not catch the new value (unless it is recompiled with the new const, of course) because it was compiled with the constants subtituted in. ReadOnly: Project A will always ask project B for it's variable value, so it will pick up the new value of the public constant in B. Honestly, I would recommend you use readonly for nearly everything except truly universal constants ( e.g. Pi, Inches_To_Centimeters). For anything that could possibly change, I say use readonly. Hope this helps, Alan. |
|||
|
|
|
A |
|||
|
|

