I have a function foo(const std::string& str); that it does crash if you call it using foo(NULL).
What can I do to prevent it from crashing?
|
std::string has a constructor that takes a const char* parameter. That's constructor is going to crash when you pass NULL to it, and that constructor is called implicitly when you write foo(NULL). The only solution I can think of is to overload foo
|
|||
|
|
You could use Boost.Optional.
To call it with a string:
and without a string:
Boost.Optional gives you a typesafe way to have nullable values without resorting to pointers and their associated problems. |
|||
|
|
|
You have a function that accepts a
This will provide the function with an empty string, which is probably what you would have interpreted your null value as anyhow. |
|||
|
|
std::string s(false)thing. – Seth Carnegie Jul 30 '11 at 16:53