vote up 1 vote down star

It would be really nice if C# allowed an ??= operator. I've found myself writing the following frequently:

something = something ?? new Something();

I'd rather write it like this:

something ??= new Something();

Thoughts? New language extensions are always controversial by their nature.

flag
I would avoid packing too many rather obscure constructs into the language, if I were C# chief architect..... Plus, the ??== operator really doesn't seem all that intuitive to me, quite honestly. – marc_s Mar 17 at 19:57
duplicate stackoverflow.com/questions/558010/… – David B Mar 17 at 20:02
It wouldn't be new, it would follow the shorthand convention of other operators – Ed Swangren Mar 17 at 20:02
Please see the duplicate post, especially the answer where you see that i = i + 1 and i += 1 are not the same for i = i ?? 1 and i ??= 1 – Samuel Mar 17 at 20:08
@Samuel: good point – Ed Swangren Mar 17 at 20:10
show 1 more comment

5 Answers

vote up 3 vote down check

I'm honestly torn on the =++ operator in the first place, and it's usage is rather widespread and common. From a clarity point of view, the extra couple of characters you need type probably isn't worth the change to the language to add a ??=. If this was a vote, I'd vote against that change to the language (good question, bad idea. :-)

I haven't tried this, but could you map ??= to a macro in visual studio that just did the rewrite for you?

link|flag
vote up 2 vote down

I would say that the '??' operator and more pertinently the above pattern is not so common and so a new operator is overkill.

link|flag
My thoughts exactly. – marc_s Mar 17 at 20:02
vote up 1 vote down

I'm not necessarily against the operator, however, that kind of variable reuse just doesn't feel like the "right way" to me. Bugs that should have been obvious NULL pointers end up populated with unexpected data and work in some unexpected way, etc....

link|flag
vote up 1 vote down

As ?? is shorthand for using the ternary operator in a fashion similar to:

(myObject != null) ? myObject : somethingElse;

rather than shorthand for an arithmetic operation, I don't think a ??= operation is a good fit. It's a conditional operator.

link|flag
vote up 0 vote down

Other programming languages like Ruby use this quite frequently:

something ||= Something.new
link|flag

Your Answer

Get an OpenID
or

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