Monday, November 22, 2004

Today, somebody asked me about the difference between constant and readonly type declarations and about when to use which one. Here is the interesting detailed comparison with three different examples…

a) private const int EXAMPLE1 = 450;
b) private static readonly DateTime EXAPMLE2 = DateTime.Now
c) private readonly DateTime EXAMPLE3 = DateTime.Now;

 

The Difference:

First one creates a compile-time constant,
Second creates a run-time class constant,
Third creates a run-time object constant.

1) Compile-time Constants

Symbols defined as const (EXAMPLE1 in this case) are replaced with the value of the constant at COMPILE TIME. Therefore statement if (ValueInConst == EXAMPLE1) would get converted to the same MSIL as if (ValueInConst == 450). The compiler replaces the symbol with the value of the constant. This is the main point to compile-time constants.  Compile-time constants can only be used effectively for built-in integral and floating-point types (primitive types), enums, or strings. These are the only types that allow you to assign meaningful constant values as part of the initialization process.  The IL generated for a compile-time constant contains the value, not the symbol. The value is "burned in" at compile time.

2) Readonly Values

Readonly values are those constants which cannot be modified after the constructor has executed. Readonly values are different, however, in that they're set at run time. You have much more flexibility in working with run time constants. Run-Time constants can be of any type; as long as you can assign them in your constructors, they will work. I could not create DateTime values with const but I can make readonly values from DateTime structures.

Secondly, readonly values can be used for instance constants, storing different values for each instance of the class type. The main distinction is that readonly values are resolved at run time. The Intermediate Language generated when you reference a readonly constant reference the readonly variable, not the value.

Which one to use?

The main difference between const and readonly fields is in their flexibility. Suppose you've defined both const and readonly fields like below:

public class SomeValues
{
   public static readonly constOne = 2;
   public const constTwo = 5;
}

Then, in an application these values are referenced and displayed using likely sum statement.

Console.WriteLine("Sum is {0}",SomeValues.constOne + SomeValues.constTwo);

If you run above snippet, Output will be “Sum is 7”.

After few days you release a new version of the assembly with the following changes:

public class SomeValues

   public static readonly constOne = 50;
   public const constTwo = 30; 
}

You distribute the assembly without rebuilding the application assembly. You'll get an absurd result as “Sum is 55” !!!!. The snippet now uses the value 50 as constOne, and 5 (OLD VALUE) as constTwo. The const value of cosntTwo (5) was placed into the application assembly by the compiler. On the other hand, constOne was declared as readonly, so it gets resolved at run time. Therefore, the application assembly uses the new value without recompiling the application assembly. Simply installing an updated version of the Infrastructure assembly is enough. Another advantage is that using readonly constants generates smaller sized assembly. Whenever you use a const value, compiler has to inserts the value of the constant. On the contrary, when you reference a readonly value compiler references that symbol not the value. On the flip side, readonly type doesn't work to initialize an attribute. The actual value of the object must be available at compile time for the attribute to get created correctly. Therefore, only values declared as const (or enums) can be used in this instance.

One major advantage constants provide over readonly is that it can be used in places where readonly values cannot be used (as in Attributes). You can use const values as the parameters to attribute constructors but you can’t use readonly values, or variables

There are some small performance gains using const instead of readonly but if you want to have little flexibility, readonly declaration has it for you. This flexibility overrides the small performance gains from using const. Everything except attribute parameters and enums should be declared readonly.

posted on Monday, November 22, 2004 6:42:00 PM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
Related posts:
DNN Upgrade to 4.5.3 and dasblog (virtual directory) crashing...
C# Design Patterns
About .Net Framework 3.0
Nice article on Asp.Net optimization
Integrated ERP software uses Microsoft.NET
Embedded database supports C#, .NET Compact Framework
Tracked by:
"jhonny depp" (jhonny depp) [Trackback]
"albergo bournemouth" (albergo bournemouth) [Trackback]
"mediale affari" (mediale affari) [Trackback]
"midi colonna sonore" (midi colonna sonore) [Trackback]
"Steve Brock Ministries" (Steve Brock Ministries) [Trackback]
"MUSIC - Bethlehem Morning" (MUSIC - Bethlehem Morning) [Trackback]
"londra big ben" (londra big ben) [Trackback]
"calendario 2003" (calendario 2003) [Trackback]
"memory card" (memory card) [Trackback]
"new york four seasons hotel" (new york four seasons hotel) [Trackback]
"MUSIC - Gloria" (MUSIC - Gloria) [Trackback]
"immagini disney" (immagini disney) [Trackback]
"gioco scaricare gratis pc" (gioco scaricare gratis pc) [Trackback]
"PRODUCTS" (PRODUCTS) [Trackback]
"Steve Brock Ministries" (Steve Brock Ministries) [Trackback]
"Steve Brock Ministries" (Steve Brock Ministries) [Trackback]
"val d aosta" (val d aosta) [Trackback]
"MUSIC - Mary Did You Know/What Child Is This?" (MUSIC - Mary Did You Know/What ... [Trackback]
"vacanza ad ischia" (vacanza ad ischia) [Trackback]
"gioco adulto gratis" (gioco adulto gratis) [Trackback]
"Steve Brock Ministries" (Steve Brock Ministries) [Trackback]
"l attimo fuggente" (l attimo fuggente) [Trackback]
"bionde masturbandosi" (bionde masturbandosi) [Trackback]
"HOME" (HOME) [Trackback]
"MUSIC" (MUSIC) [Trackback]
"giochi carta regolamento" (giochi carta regolamento) [Trackback]
"Steve Brock Ministries" (Steve Brock Ministries) [Trackback]
"PARTNERS" (PARTNERS) [Trackback]
"PHOTOS" (PHOTOS) [Trackback]
"perline gioiello" (perline gioiello) [Trackback]
"SCHEDULE" (SCHEDULE) [Trackback]
"CONTACT" (CONTACT) [Trackback]
"torte bindi" (torte bindi) [Trackback]
"pulcino fottilo nella residenza" (pulcino fottilo nella residenza) [Trackback]
"OUTREACH" (OUTREACH) [Trackback]
"medio apparecchio" (medio apparecchio) [Trackback]
"albergo firenze hotel" (albergo firenze hotel) [Trackback]
"freddissimo gradito papa" (freddissimo gradito papa) [Trackback]
"amministratore condominiale" (amministratore condominiale) [Trackback]
"scuola superiore" (scuola superiore) [Trackback]
"Pictures of Adderall" (Pictures of Adderall) [Trackback]
"nfl bowling bags" (nfl bowling bags) [Trackback]
"candle set spa gift basket" (candle set spa gift basket) [Trackback]
"xenadrine efx negative side effects" (xenadrine efx negative side effects) [Trackback]
"Discover Card Services" (Discover Card Services) [Trackback]
"flagyl in breastfed baby" (flagyl in breastfed baby) [Trackback]
"money money money" (money money money) [Trackback]
"virginia pilot" (virginia pilot) [Trackback]
"Stories Wife Threesome" (Stories Wife Threesome) [Trackback]
"Vinyl Stone Siding" (Vinyl Stone Siding) [Trackback]
"viking ships" (viking ships) [Trackback]
"naked girls massages" (naked girls massages) [Trackback]
"dunhill cufflinks" (dunhill cufflinks) [Trackback]
"Support groups in texas for depressed teens" (Support groups in texas for depre... [Trackback]
"Hamster Care" (Hamster Care) [Trackback]
"Will Smith switch" (Will Smith switch) [Trackback]
"cook crack cocaine in microwave" (cook crack cocaine in microwave) [Trackback]
"distance learning missouri university" (distance learning missouri university) [Trackback]
"sONGWRITER AND PERFORMER" (sONGWRITER AND PERFORMER) [Trackback]
"oklahoma fraud examiner" (oklahoma fraud examiner) [Trackback]
"What Does Crab Grass Look like" (What Does Crab Grass Look like) [Trackback]
"Infertility in women by Alayne .R MD." (Infertility in women by Alayne .R MD.... [Trackback]
"strategies for teaching listening" (strategies for teaching listening) [Trackback]
"Hostel Scotland" (Hostel Scotland) [Trackback]
"Back seat bangers" (Back seat bangers) [Trackback]
"tent rental" (tent rental) [Trackback]
"Kawasaki Concours" (Kawasaki Concours) [Trackback]
"diflucan and gas" (diflucan and gas) [Trackback]
"ultram" (ultram) [Trackback]
"lodging in sedona arizona" (lodging in sedona arizona) [Trackback]
"wifi hotspot locations" (wifi hotspot locations) [Trackback]
"Mercedes Benz parts" (Mercedes Benz parts) [Trackback]
"Francisco Goya" (Francisco Goya) [Trackback]
"sunshine key rv resort florida camping" (sunshine key rv resort florida camping... [Trackback]
"anime sleeping nude" (anime sleeping nude) [Trackback]
"bass fishing central florida guide" (bass fishing central florida guide) [Trackback]
"infertility AND denied health insurance" (infertility AND denied health insuran... [Trackback]
"family leave act" (family leave act) [Trackback]
"ingoiogallery" (ingoiogallery) [Trackback]
"hennepin county minnesota" (hennepin county minnesota) [Trackback]
"model figures" (model figures) [Trackback]
"flexeril and Skilaxin" (flexeril and Skilaxin) [Trackback]
"uLTRACET" (uLTRACET) [Trackback]
"washington nc" (washington nc) [Trackback]
"Factitious Disorder" (Factitious Disorder) [Trackback]
"lucas county real estate" (lucas county real estate) [Trackback]
"converse high top sneakers chuck taylor" (converse high top sneakers chuck tayl... [Trackback]
"Diet Plan" (Diet Plan) [Trackback]
"bondage harness" (bondage harness) [Trackback]
"cleveland golf" (cleveland golf) [Trackback]
"sea turtle pictures" (sea turtle pictures) [Trackback]
"office furniture installations" (office furniture installations) [Trackback]
"Infiniti qx 56" (Infiniti qx 56) [Trackback]
"torque wrench repair service" (torque wrench repair service) [Trackback]
"marketing research tool" (marketing research tool) [Trackback]
"14k vintage charms" (14k vintage charms) [Trackback]
"Wireless Providers" (Wireless Providers) [Trackback]
"antique civil war swords" (antique civil war swords) [Trackback]
"acidophilus" (acidophilus) [Trackback]
"telephone answering service" (telephone answering service) [Trackback]
"walk in refrigerator" (walk in refrigerator) [Trackback]
"Flower Pin" (Flower Pin) [Trackback]
"grand theft treatment program" (grand theft treatment program) [Trackback]
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):