vote up 16 vote down star
3

In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.

flag

6 Answers

vote up 22 vote down check

The reason that static readonly is used instead of const is due to use with unmanaged code, as indicated by Microsoft here in the Shared Source Common Language Infrastructure 2.0 Release. The file to look at is sscli20\clr\src\bcl\system\string.cs.

The Empty constant holds the empty string value. We need to call the String constructor so that the compiler doesn't mark this as a literal.

Marking this as a literal would mean that it doesn't show up as a field which we can access from native.

I found this information from this handy article at CodeProject.

link|flag
1  
Google is our friend. :) – Jeff Yates Feb 3 at 17:55
vote up -1 vote down

Because String is a class and therefore cannot be a constant.

Please look at the comments to this question as they contain extra details and discussion of the topic

link|flag
Please, vote down the correct answer. If you Goto Definition, you'll find that it is on the String class and is an instance of String. The fact that it shows as lower case is compiler magic. – Garry Shutler Feb 3 at 16:54
It wasn't me who downvoted you but in .NET, (unlike in Java) string and String are exactly the same. And yes, you can have string literal constants in .NET – DrJokepu Feb 3 at 16:57
I didnt DV you, but can you humor me a bit. Are you saying that a Class cannot have constants? – StingyJack Feb 3 at 16:58
Yes, objects have to use readonly. Only structs can do constants. I think when you use string instead of String the compiler changes the const into a readonly for you. All to do with keeping C programmers happy. – Garry Shutler Feb 3 at 16:59
1  
This answer would be correct for nearly any other class but System.String. .NET does a lot of performance special-casing for strings, and one of them is that you CAN have string constants, just try it. In this case, Jeff Yates has the correct answer. – Joel Mueller Feb 3 at 19:25
show 11 more comments
vote up 0 vote down

because a constant will create and object when string.Empty does not

link|flag
If string.Empty was/could be a constant then it would create the exact same number of objects as a readonly statement. – Garry Shutler Feb 3 at 17:01
@Garry: yes, except that a static member cannot be const. – senfo Feb 3 at 17:04
String.Empty indeed creates an object - just check out the static constructor of the String class with Resharper – DrJokepu Feb 3 at 17:07
vote up 0 vote down

According to this link, the reason is that by making it a readonly property you save one object creation for maximum efficiency.

link|flag
A readonly field and a constant one will always result in one instance being created. However, each time you use "" it creates a new string, which is the point that article was making. – Garry Shutler Feb 3 at 16:58
@Garry Shutler - which seems wrong, since I remember reading that the compiler "interns" strings, so every time you use "" it refers to the same string instance. – Scott W. Aug 21 at 2:53
vote up 1 vote down

For all intents and purposes it is constant... unless you know something I don't about how to change it or how to create duplicate instances.

link|flag
vote up 7 vote down

I think there is a lot of confusion and bad responses here.

First of all, const fields are static members (not instance members).

Check section 10.4 Constants of the C# language specification.

Even though constants are considered static members, a constant-declaration neither requires nor allows a static modifier.

If public const members are static, one could not consider that a constant will create a new Object.

Given this, the following lines of code do exactly the same thing in respect to the creation of a new Object.

public static readonly string Empty = "";
public const string Empty = "";

Here is a note from Microsoft that explains the difference between the 2:

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, ...

So I find that the only plausible answer here is Jeff Yates's.

link|flag
+1 for the kind words and clarification regarding C# spec on const and static readonly. – Jeff Yates Feb 3 at 17:46

Your Answer

Get an OpenID
or

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