错误处理的替代方案:异常机制:使用 try-catch 块处理异常,优点是易读性强,缺点是可能导致异常传递;错误码:使用特定值表示错误,优点是控制细致,缺点是需要在调用者中检查错误码。
在 C++ 中,基本上有两种处理函数异常的方法:
try
和 catch
块捕获和处理错误。errno
。异常机制
try { // 可能引发异常的代码 } catch (std::exception& e) { // 处理异常 }
优点:
缺点:
错误码
int myFunction() { // 执行操作并设置错误码 if (条件) { return -1; // 错误码 } else { return 0; // 成功码 } }
优点:
缺点:
实战案例
假设有一个 readFile
函数,它可能引发 std::ifstream::failure
异常:
std::ifstream readFile(const std::string& filename) { std::ifstream file(filename); if (!file.is_open()) { throw std::ifstream::failure("无法打开文件"); } return file; }
使用异常机制:
try { std::ifstream file = readFile("example.txt"); // 使用 file } catch (std::ifstream::failure& e) { // 处理错误 }
使用错误码:
int result = readFile("example.txt"); if (result == -1) { // 处理错误 } else { std::ifstream file(result); // 使用 file }