In this answer I talk about using a std::ifstream object's conversion to bool to test whether the stream is still in a good state. I looked in the Josuttis book for more information (p. 600 if you're interested), and it turns out that the iostream objects actually overload operator void*. It returns a null pointer when the stream is bad (which can be implicitly converted to false), and a non-null pointer otherwise (implicitly converted to true). Why don't they just overload operator bool?
|
|
|||
|
|
|
This is an instance of the "safe bool" problem. Here is a good article: http://www.artima.com/cppsource/safebool.html . C++0x helps the situation with |
|||
|
|
|
It looks like the C++0x standard section 27.4.4.3 has the answer (emphasis mine).
|
|||
|
|
The newest C++11 requires that:
See C++11 27.5.5.4-1. The 'explicit' seems odd to me, though. |
|||
|