Recently I had a weird bug where I was concatenating a string with an int? and then adding another string after that.

My code was basically the equivalent of this:

int? x=10;
string s = "foo" + x ?? 0 + "bar";

Amazingly enough this will run and compile without warnings or incompatible type errors, as will this:

int? x=10;
string s = "foo" + x ?? "0" + "bar";

And then this results in an unexpected type incompatibility error:

int? x=10;
string s = "foo" + x ?? 0 + 12;

As will this simpler example:

int? x=10;
string s = "foo" + x ?? 0;

Can someone explain how this works to me?

link|improve this question

80% accept rate
A related issue: stackoverflow.com/questions/3218140/… – Eric Lippert Jul 15 '10 at 21:38
And here is a link that does not make my answer glow... stackoverflow.com/questions/3218140/… – ChaosPandion Jul 15 '10 at 22:17
feedback

2 Answers

up vote 12 down vote accepted

The null coalescing operator has very low precedence so your code is being interpreted as:

int? x = 10;
string s = ("foo" + x) ?? (0 + "bar");

In this example both expressions are strings so it compiles, but doesn't do what you want. In your next example the left side of the ?? operator is a string, but the right hand side is an integer so it doesn't compile:

int? x = 10;
string s = ("foo" + x) ?? (0 + 12);
// Error: Operator '??' cannot be applied to operands of type 'string' and 'int'

The solution of course is to add parentheses:

int? x = 10;
string s = "foo" + (x ?? 0) + "bar";
link|improve this answer
Ah so because of the low precedence the two sides form almost two separate expressions – Earlz Jul 15 '10 at 19:49
this explains why int x = 10; string s = "foo" + x ?? "0"; works then – Earlz Jul 15 '10 at 20:00
feedback

The ?? operator has lower precedence than the + operator, so your expression really works as:

string s = ("foo" + x) ?? (0 + "bar");

First the string "foo" and the string value of x are concatenated, and if that would be null (which it can't be), the string value of 0 and the string "bar" are concatenated.

link|improve this answer
1  
Photo finish :) 1 second win :) – Yury Tarabanko Jul 15 '10 at 19:50
feedback

Your Answer

 
or
required, but never shown

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