我很好奇如何通过简单地将对象的名称放在条件语句中fstream
class
来返回 a true
or值。false
例如...
std::fstream fileStream;
fileStream.open("somefile.ext");
if (!fileStream) // How does this work?
std::cout << "File could not be opened...\n";
我问这个是因为如果我以类似的方式使用它,我希望我自己的类返回一个值。