Why is adding null to a string legal?

C#Language Design

C# Problem Overview


The MSDN article on String Basics shows this:

string str = "hello";
string nullStr = null;
string emptyStr = "";

string tempStr = str + nullStr; // tempStr = "hello"
bool b = (emptyStr == nullStr);// b = false;
string newStr = emptyStr + nullStr; // creates a new empty string
int len = nullStr.Length; // throws NullReferenceException

Why doesn't concatenating with null throw a null reference exception? Is it to make a programmer's life easier, such that they don't have to check for null before concatenation?

C# Solutions


Solution 1 - C#

From MSDN:

> In string concatenation operations, > the C# compiler treats a null string > the same as an empty string, but it > does not convert the value of the > original null string.

More information on the + binary operator:

> The binary + operator performs string > concatenation when one or both > operands are of type string. > If an > operand of string concatenation is > null, an empty string is substituted. > Otherwise, any non-string argument is > converted to its string representation > by invoking the virtual ToString > method inherited from type object. > If > ToString returns null, an empty string > is substituted.

Solution 2 - C#

I agree that conceptually strings are just values. However, consider the following code:

int? i = null;
i += 1; // The result of this is that i == null

If the other value type operators used default() the way the string operators are converting null to "", your explanation would make sense.

It's simplest to say that the string operators are a shortcut (special case) for convenience.

Solution 3 - C#

Conceptually, strings are normally thought of as values as opposed to references to objects which have identity. One of the main reasons that they aren't structs with value semantics is because of the overhead that comes with copying-on-assignment. If strings were values they couldn't be nullable and so a null is just treated by the "+" operator as if it were an empty string (i.e., as if default(string) == "" just as default(int) == 0).

Solution 4 - C#

I guess the language (or standard library) designers decided this would be a common enough case that they'd do programmers a favour.

(Neat! I always just assumed concating with null would through an exception!)

Solution 5 - C#

The reason it doesn't throw a null reference exception is because you're not actually trying to access any properties or methods on the null object. As CMS quotes, when concatenating string, nulls are replaced with empty strings.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDavid HodgsonView Question on Stackoverflow
Solution 1 - C#Christian C. SalvadóView Answer on Stackoverflow
Solution 2 - C#Nathan AldenView Answer on Stackoverflow
Solution 3 - C#Mark CidadeView Answer on Stackoverflow
Solution 4 - C#DanaView Answer on Stackoverflow
Solution 5 - C#tarnView Answer on Stackoverflow