传统的错误处理机制:
实际中C语言基本都是使用返回错误码的方式处理错误,部分情况下使用终止程序处理非常严重的 错误。
异常处理是C++提供的一种机制,用于处理程序运行过程中出现的异常情况。这种机制涉及到三个关键字:try、catch和throw。
使用try/catch语句的语法如下所示:
try {
//被保护的代码
} catch (ExceptionName e1) {
//catch块
} catch (ExceptionName e2) {
//catch块
} catch (ExceptionName eN) {
//catch块
}
异常的抛出和匹配原则
异常是通过抛出对象而引发的,该对象的类型决定了应该激活哪个catch的处理代码。
被选中的处理代码是调用链中与该对象类型匹配且离抛出异常位置最近的那一个。
抛出异常对象后,会生成一个异常对象的拷贝,因为抛出的异常对象可能是一个临时对象, 所以会生成一个拷贝对象,这个拷贝的临时对象会在被catch以后销毁。(这里的处理类似 于函数的传值返回)
catch(...)
可以捕获任意类型的异常,问题是不知道异常错误是什么。实际中抛出和捕获的匹配原则有个例外,并不都是类型完全匹配,可以抛出的派生类对象, 使用基类捕获,这个在实际中非常实用,我们后面会详细讲解这个。
在函数调用链中异常栈展开匹配原则
- 首先检查throw本身是否在try块内部,如果是再查找匹配的catch语句。如果有匹配的,则调到catch的地方进行处理。
- 没有匹配的catch则退出当前函数栈,继续在调用函数的栈中进行查找匹配的catch。
- 如果到达main函数的栈,依旧没有匹配的,则终止程序。上述这个沿着调用链查找匹配的catch子句的过程称为栈展开。所以实际中我们最后都要加一个catch(…)捕获任意类型的异常,否则当有异常没捕获,程序就会直接终止。
- 找到匹配的catch子句并处理以后,会继续沿着catch子句后面继续执行。
比如下面的代码中main函数中调用了func3,func3中调用了func2,func2中调用了func1,在func1中抛出了一个string类型的异常对象。
#include
#include
using namespace std;
void func1() {
throw string("这是一个异常");
}
void func2() {
func1();
}
void func3() {
func2();
}
int main() {
try {
func3();
} catch (const string &s) {
cout << "错误描述:" << s << endl;
} catch (...) {
cout << "未知异常" << endl;
}
return 0;
}
当func1中的异常被抛出后:
如下图所示:
上述这个沿着调用链查找匹配的catch子句的过程称为栈展开。在实际中我们最后都要加一个catch(...)
捕获任意类型的异常,否则当有异常没捕获时,程序就会直接终止。
#include
using namespace std;
double Division(int a, int b) {
// 当b == 0时抛出异常
if (b == 0)
throw "Division by zero condition!";
else
return ((double)a / (double)b);
}
void Func() {
int len, time;
cin >> len >> time;
cout << Division(len, time) << endl;
}
int main() {
try {
Func();
}
catch (const char* errmsg) {
cout << errmsg << endl;
}
catch (...) {
cout << "unkown exception" << endl;
}
return 0;
}
输出:
10 0
Division by zero condition!
如果throw没有匹配的catch
int main() {
try {
Func();
}
catch (int errmsg) {
cout << errmsg << endl;
}
return 0;
}
只有加上catch (...)
int main() {
try {
Func();
}
catch (int errmsg) {
cout << errmsg << endl;
}
catch (...) {
cout << "unkown exception" << endl;
}
return 0;
}
输出:
10 0
unkown exception
有时候单个的catch可能不能完全处理一个异常,在进行一些校正处理以后,希望再交给更外层的调用链函数来处理,比如最外层可能需要拿到异常进行日志信息的记录,这时就需要通过重新抛出将异常传递给更上层的函数进行处理。
但如果直接让最外层捕获异常进行处理可能会引发一些问题。比如:
#include
#include
using namespace std;
void func1() {
throw string("这是一个异常");
}
void func2() {
int *array = new int[10];
func1();
//do something...
delete[] array;
}
int main() {
try {
func2();
} catch (const string &s) {
cout << s << endl;
} catch (...) {
cout << "未知异常" << endl;
}
return 0;
}
其中func2中通过new操作符申请了一块内存空间,并且在func2最后通过delete对该空间进行了释放,但由于func2中途调用的func1内部抛出了一个异常,这时会直接跳转到main函数中的catch块执行对应的异常处理程序,并且在处理完后继续沿着catch块往后执行。
这时就导致func2中申请的内存块没有得到释放,造成了内存泄露。这时可以在func2中先对func1抛出的异常进行捕获,捕获后先将申请到的内存释放再将异常重新抛出,这时就避免了内存泄露。比如:
#include
#include
using namespace std;
void func1() {
throw string("这是一个异常");
}
void func2() {
int *array = new int[10];
try {
func1();
//do something...
} catch (...) {
delete[] array;
throw;//将捕获到的异常再次重新抛出
}
delete[] array;
}
int main() {
try {
func2();
} catch (const string &s) {
cout << s << endl;
} catch (...) {
cout << "未知异常" << endl;
}
return 0;
}
说明一下:
将抛异常导致的安全问题叫做异常安全问题,对于异常安全问题下面给出几点建议:
在C++中,异常规范是一种语法,用于显式地声明一个函数可能抛出的异常类型。异常规范在函数声明后面,使用 throw 关键字后跟括号内可能抛出的异常类型列表来表示。
throw(type1, type2, ...)
,列出这个函数可能抛掷的所有异常类型。throw()
或noexcept
(C++11),表示该函数不抛异常。例如:
void func() throw (int, char); // 可抛出 int 或 char 类型的异常
C++11以后的新标准已经废弃了上述的异常规范方式,取而代之的是 noexcept
关键字。noexcept
用于声明一个函数保证不抛出任何异常。如果函数确实抛出了异常,那么程序将调用 std::terminate(),引发程序的终止。
例如:
void func() noexcept; // 声明 func() 保证不抛出任何异常
另外,noexcept
还可以带一个可选的布尔参数,如果参数为 true,那么表示函数保证不抛出任何异常,等同于无参数的 noexcept
;如果参数为 false,那么表示函数可能抛出异常。
例如:
void func() noexcept(true); // 声明 func() 保证不抛出任何异常
void func() noexcept(false); // 声明 func() 可能抛出异常
使用 noexcept
能帮助编译器进行一些优化,因此在知道函数不会抛出异常的情况下,建议使用 noexcept
。
实际中很多公司都会自定义自己的异常体系进行规范的异常管理。
如下图:
服务器开发中通常使用的异常继承体系:
#include // for std::chrono::seconds
#include // for srand, rand
#include // for time
#include
#include
#include // for std::this_thread::sleep_for
using namespace std;
class Exception {
public:
Exception(const string &errmsg, int id)
: _errmsg(errmsg), _id(id) {}
virtual string what() const {
return _errmsg;
}
protected:
string _errmsg;
int _id;
};
class SqlException : public Exception {
public:
SqlException(const string &errmsg, int id, const string &sql)
: Exception(errmsg, id), _sql(sql) {}
virtual string what() const {
string str = "SqlException:";
str += _errmsg;
str += "->";
str += _sql;
return str;
}
private:
const string _sql;
};
class CacheException : public Exception {
public:
CacheException(const string &errmsg, int id)
: Exception(errmsg, id) {}
virtual string what() const {
string str = "CacheException:";
str += _errmsg;
return str;
}
};
class HttpServerException : public Exception {
public:
HttpServerException(const string &errmsg, int id, const string &type)
: Exception(errmsg, id), _type(type) {}
virtual string what() const {
string str = "HttpServerException:";
str += _type;
str += ":";
str += _errmsg;
return str;
}
private:
const string _type;
};
void SQLMgr() {
srand(time(0));
if (rand() % 7 == 0) {
throw SqlException("权限不足", 100, "select * from name = '张三'");
}
//throw "xxxxxx";
}
void CacheMgr() {
srand(time(0));
if (rand() % 5 == 0) {
throw CacheException("权限不足", 100);
} else if (rand() % 6 == 0) {
throw CacheException("数据不存在", 101);
}
SQLMgr();
}
void HttpServer() {
// ...
srand(time(0));
if (rand() % 3 == 0) {
throw HttpServerException("请求资源不存在", 100, "get");
} else if (rand() % 4 == 0) {
throw HttpServerException("权限不足", 101, "post");
}
CacheMgr();
}
int main() {
while (1) {
this_thread::sleep_for(chrono::seconds(1));
try {
HttpServer();
} catch (const Exception &e)// 这里捕获父类对象就可以
{
// 多态
cout << e.what() << endl;
} catch (...) {
cout << "Unkown Exception" << endl;
}
}
return 0;
}
说明一下:
C++标准库当中的异常也是一个基础体系,其中exception就是各个异常类的基类,我们可以在程序中使用这些标准的异常,它们之间的继承关系如下:
下表是对上面继承体系中出现的每个异常的说明:
说明一下:
优点:
T& operator
这样的函数,如果pos越界了只能使用异常或者终止程序处理,没办法通过返回值表示错误。缺点:
T& operator
这样的函数,如果pos越界了只能使用异常或者终止程序处理,没办法通过返回值表示错误。