Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
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 '09 at 19:57
It wouldn't be new, it would follow the shorthand convention of other operators – Ed S. Mar 17 '09 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 '09 at 20:08
1  
A null coalescing peoperty (dot) operator "?." for returning null when dereferencing a null object (calling a method or property) would be above this on my wish list. That is, string dogOwnerName = Dog?.Owner?.Name which would be null if the dog was null, or if it had no owner. – Anders Forsgren Apr 22 at 9:11
show 2 more comments

6 Answers

up vote 3 down vote accepted

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?

share|improve this answer

Other programming languages like Ruby use this quite frequently:

something ||= Something.new
share|improve this answer

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.

share|improve this answer

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

share|improve this answer
My thoughts exactly. – marc_s Mar 17 '09 at 20:02

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

share|improve this answer

If 'something' is a private field for a property accessor, you can do the following....this would perform the assignment if the field is found to be null.

private Something something;
public Something Something
{
    get
    {
        return something ?? (something = new Something());
    }
}
share|improve this answer
This does not address the intent of the operator. The intent of my asking the question was to ask if there were plans to incorporate a ??= operator and would that make sense. The code example above does not streamline code and has to be written for each case. – CodeMonkeyKing Apr 22 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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