Wednesday, March 4, 2015

Difference between Const and ReadOnly in C#

Introduction

 

While programming on C#, it is always suggested that we understand the concepts before we go ahead and implement the code. In this article, let us understand the basic differences between the const and the readonly keywords and also understand how to use them in our code.
This is my first article on code project and would like to contribute and learn more from here.

Background

 

At a very high level, as per MSDN
Constants are immutable values which are known at compile time and do not change their values for the life of the program. 
Readonly variables are also immutable values which are known at run time and do not change their values for the life of the program.
Hmm..definitions apart, let us understand what this really means to us.

Using the code

Constants:
Constants are declared using a "const" keyword.
Constants should be assigned a value at the time of the variable declaration and hence are known at compile time. Now whenever you declare a constant variable, the C# compiler substitutes its value directly into the Intermediate Language (MSIL).
    class ConstantEx
{
public const int number =3;
}

class Program
{
static void Main(string[] args)
{
Console.WriteLine(ConstantEx.number);
Console.ReadLine();
}
}
Now that we understand the value is directly replaced in the MSIL, any modifications you do to the const variable would result in something similar to below
class Program
{
static void Main(string[] args)
{
// ConstantEx.number = 15
// The above line would throw an error as it internally becomes a statement saying 3=15
// which is not valid
Console.WriteLine(ConstantEx.number);
Console.ReadLine();
}
}
Hence, constants are immutable values which are known at compile time and do not change their values for the life of the program.

Readonly :
Readonly variables are a little different from their colleague, const.
Readonly variables are known at runtime, they can be assigned a value either at runtime or at the time of the instance initialization. Again, lets understand through code here.
    class ReadOnlyEx
{
public readonly int number = 10;
}

class Program
{
static void Main(string[] args)
{
ReadOnlyEx readOnlyInstance = new ReadOnlyEx();
Console.WriteLine(readOnlyInstance.number);
}
}
In the above code snippet, the readonly variable is assigned a value at the time of the declaration and is accessed using the instance of the class rather than using the class itself. Now you may have another instance of the class, which might have the readonly number variable assigned to a different value based on some conditions. Can I do it? Yes, because the readonly variables are known at run time.
Let us try doing this.

    class ReadOnlyEx
{
public readonly int number = 10;
public ReadOnlyEx()
{
number =20;
}
public ReadOnlyEx(bool IsDifferentInstance)
{
number = 100;
}
}

class Program
{
static void Main(string[] args)
{

ReadOnlyEx readOnlyInstance = new ReadOnlyEx();
Console.WriteLine(readOnlyInstance.number);

ReadOnlyEx differentInstance = new ReadOnlyEx(true);
Console.WriteLine(differentInstance.number);

Console.ReadLine();
}
}
 
 
You would see different values coming out of the program's output for the two different instance of the class.
Hence,Readonly variables are also immutable values which are known at run time and do not change their values for the life of the program.

Now for those "Let me read this interview question" kind of guys:

Constants:
1. Constants can be assigned values only at the time of declaration
2. Constant variables have to be accessed using "Classname.VariableName"
3. Const values will evaluate at compile time only.


Read Only:
1. Read only variables can be assigned values either at runtime or at the time of instance initialization via constructor
2. Read only variables have to be accessed using the "InstanceName.VariableName"
3. Read only variables will evaluate at runtime only.

Now that we understand the differences between them, one can easily determine the appropriate keyword as per the requirement.

Suppose if you want the value of the constant won't change use a const or if you have a constant that may change or when in doubt, use a readonly.

No comments:

Post a Comment