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
|
feedback
|
|
There isn't a way to do this by default in C++, but you could write one: in C# the ?? operator is defined as
So, the C++ method would look like
| |||||||||
feedback
|
|
How about this?
| |||||||||||||
feedback
|
a ?: bbut that's non-portable. – MSalters Nov 26 '09 at 15:36