-
goto
跳转集中处理int func() { if(!try_do_a()) goto END_FUNC; if(!try_do_b()) goto END_FUNC; // ... return 0; END_FUNC: // do something }
-
do{...}while(0)
(原理同上, 其实就是 goto 的另一种形式)int func() { int r = 0; do { if(!try_do_a()) { r = ...; break; } if(!try_do_b()) { r = ...; break; } // ... }while(0); if(r != 0) { // do something } else return 0; }
1. & 2. 适用于大部分错误, 可以告知调用者具体错误.
-
利用
throw
和try{...}catch(...){...}
int func() { if(!try_do_a()) throw some_error_data; if(!try_do_b()) throw some_error_data; // ... return 0; } int caller() { try { func(); } catch(error_data_type& e) { // do something } }
适用于出现重大且不可恢复的错误.
-
利用 C++ RAII 机制在变量析构时处理 (在 C++11 之后配合 lambda 更加方便)
class __scope_error { public: explicit __scope_error(std::function<void()> in_on_exit) : m_on_exit(in_on_exit), m_is_noerror(false) {} ~__scope_error() { if (!m_is_noerror) m_on_exit(); } __scope_error(const __scope_error&) = delete; __scope_error& operator=(const __scope_error&) = delete; void ok() { m_is_noerror = true; } private: std::function<void()> m_on_exit; bool m_is_noerror; }; int func() { __scope_error se(a_func); if(!try_do_a()) return -1; if(!try_do_b()) return -1; // ... se.ok(); return 0; }
适用于绝大多数错误, 推荐使用.
相关文章
- 12-24[转载]C++中声明与定义的区别
- 12-24C++中的静态类型和动态类型的定义
- 12-24实体类属性名和数据库表字段名不对应的几种情况以及解决方式
- 12-24《C++ Primer Plus》第7章 函数——C++的编程模块 学习笔记
- 12-24【2018.08.13 C与C++基础】C++语言的设计与演化读书笔记
- 12-24C++ 遇见的一些函数
- 12-24清除浮动的几种方式
- 12-24delphi 与 C++的基本语法区别
- 12-24C++中的c_str()函数用法
- 12-24vs2012 提示 未能正确加载 "Visual C++ Language Manager Package" 包 的解决办法