我尝试在类的函数中打开文件:
void openFile(){
inputFile.open(inputFilename.c_str());
if (inputFile.is_open()){
inputFile.read(buffer, skipAtBegin);
} else {
cerr << "Cannot open file: " << inputFilename << endl;
exitNow();
}
}
在 main() 中我只会返回 1,但是我怎样才能以最好/最简单的方式在子函数类中做到这一点?
返回 1 所有步骤到主要?
使用异常?
有什么exit()
命令吗?