我有一个类 X,它有一个 writeBinary(ostream) 方法,如果流发生问题,它可以抛出一个自定义异常。
写入 fstream 和错误检查的正确方法是什么?
这是我的版本:我想知道我是否遗漏了什么或者我需要捕获错误。
ofstream ofs("X.binary.tmp");
if (!ofs) {
cerr << "Could not open file for writing";
throw runtime_error("Could not open file for writing");
}
try {
x.writeBinary(ofs);
} catch(CustomException& e) {
// remove the temporary file
int x = unlink("X.binary.tmp");
if (x) {
cerr << "Failed to remove file";
}
throw;
}
if (!ofs) { // is this check necessary?
int x = unlink("X.binary.tmp"):
if (x) {
cerr << "Failed to remove file";
}
throw std::runtime_error("Stream error");
}
rename("X.binary.tmp", "X.binary");
可以简化这种大杂烩的异常吗?