When I run code like
istream s;
if (s)
// ...
I can test for the truth value of istream (or any ios object). From my understanding, this works the way it does because of how ios defines the operator! function. (For reference, http://www.cplusplus.com/reference/ios/ios/operatornot/.) My question is: why does putting s inside the if statement, as above, cause the operator! function to be evaluated? As a secondary question, if I put just any object inside an if statement, what are the possible ways that C++ will use to evaluate its truthiness?

operator bool(). – chris Jan 27 at 18:43operator void*()in C++98? – Flexo♦ Jan 27 at 18:44