is there a C++ equivalent for C# null coalescing operator? i am doing too many null checks in my code.. so was looking for a way to reduce the amount of null code

link|improve this question

1  
In GCC, it's a ?: b but that's non-portable. – MSalters Nov 26 '09 at 15:36
feedback

2 Answers

up vote 9 down vote accepted

There isn't a way to do this by default in C++, but you could write one:

in C# the ?? operator is defined as

a ?? b === (a != null ? a : b)

So, the C++ method would look like

Coalesce(a, b) // put your own types in, or make a template
{
    return a != null ? a : b;
}
link|improve this answer
1  
In this method b is evaluated even if a isn't null. This might be a problem if b has side effects. – Amnon Nov 23 '09 at 19:52
2  
@Amnon: Indeed. Consider: p = Coalesce(p, new int(10));. Also, it seems in C# the right-hand operand cannot be NULL (can't be checked at compile-time, since there are no nullable types in C++?). On the other hand: is there that much need for it in C++, so that you can't just type a ? a : b;? – UncleBens Nov 23 '09 at 21:34
feedback

How about this?

#define IFNULL(a,b) ((a) == null ? (b) : (a))
link|improve this answer
beware of IFNULL(a++, b) Yeah, I realize you'd want to beware of that anyway if you think a might be null. IFNULL(SomeClass.DoSomethingReallyLong(), "") causes problems too. – McKay Nov 23 '09 at 19:40
Good point-- serves me right for being lazy. Using a template method is definintely the way to go here, since it avoids side effects and will have equivalent performance (or better). I'm going to add a +1 on @McKay's solution now. :-) – Justin Grant Nov 23 '09 at 20:27
2  
A function template doesn't necessarily have equal or better performance. This "short-circuits" (b is not evaluated unless a is null), whereas a function's arguments are always evaluated. – Steve Jessop Nov 23 '09 at 22:02
@Steve Correct Justin's code would "perform" better in the case of IFNULL("", SomeClass.DoSomethingReallyLong()); – McKay Nov 23 '09 at 22:25
Also a good point. But, I think the most common use case (at least in C# when I've used the ?? operator) is where a is more expensive (e.g. database call, XML parsing) than b. Often b is a constant, like 0 or "". So I suspect the template would win out most of the time. Plus, unless you know how the macro is implemented, the double-execution wouldn't be obvious to the macro's caller, while function-call semantics are well-known so anyone with an expensive b would know to skip the function and just manually create a temporary variable. Funny, I'm arguing against my own answer... :-) – Justin Grant Nov 23 '09 at 22:37
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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