C语言传统的错误处理机制:
实际中C语言基本都是使用返回错误码的方式处理错误,部分情况下使用终止程序处理非常严重的错误。
异常是一种处理错误的方式,当一个函数发现自己无法处理的错误时就可以抛出异常,让函数的直接或间接的调用者处理这个错误。
如果有一个块抛出一个异常,捕获异常的方法会使用 try 和 catch 关键字。try 块中放置可能抛出异常的代码,try 块中的代码被称为保护代码。使用 try/catch 语句的语法如下所示:
try
{
// 保护的标识代码
}
catch (ExceptionName e1)
{
// catch 块
}
catch (ExceptionName e2)
{
// catch 块
}
catch (ExceptionName eN)
{
// catch 块
}
例如代码:
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 x, y;
cin >> x >> y;
cout << Division(x, y) << endl;
}
int main()
{
while (1)
{
try
{
Func();
}
catch (const char* errmsg)
{
cout << errmsg << endl;
}
// 走到这里说明有人没有按规范(约定)抛异常
catch (...)
{
cout << "未知异常" << endl;
}
}
return 0;
}
注意,只要是抛出了异常,就会直接跳转到 catch 语句,剩下的语句都不会执行,例如我们在 Func 函数后加上一些语句,当出现除0错误时,后面的语句不会执行:
void Func()
{
int x, y;
cin >> x >> y;
cout << Division(x, y) << endl;
cout << "xxxxxxxxxxxxxxxxxxxxxx" << endl;
}
有可能单个的 catch 不能完全处理一个异常,在进行一些校正处理以后,希望再交给更外层的调用链函数来处理,catch 则可以通过重新抛出将异常传递给更上层的函数进行处理。
例如以下代码:
double Division(int a, int b)
{
// 当b == 0时抛出异常
if (b == 0)
{
throw "Division by zero condition!";
}
return (double)a / (double)b;
}
void Func()
{
// 这里可以看到如果发生除0错误抛出异常,下面的 array 没有得到释放。
int* array = new int[10];
int len, time;
cin >> len >> time;
cout << Division(len, time) << endl;
cout << "delete []" << array << endl;
delete[] array;
}
int main()
{
try
{
Func();
}
catch (const char* errmsg)
{
cout << errmsg << endl;
}
return 0;
}
我们可以看到,当 Func 函数内部发生了除0错误的时候,array 的资源没有得到释放,会发生内存泄漏,如下图:
那么该如何解决呢?所以这里也需要捕获异常,捕获异常后并不处理异常,异常还是交给外面处理,这里捕获了再重新抛出去,Func 函数应该像下面一样处理:
void Func()
{
// 这里捕获异常后并不处理异常,异常还是交给外面处理,这里捕获了再重新抛出去。
int* array = new int[10];
try
{
int len, time;
cin >> len >> time;
cout << Division(len, time) << endl;
}
catch (...)
{
cout << "delete []" << array << endl;
delete[] array;
throw; // 捕获到什么就抛什么
}
cout << "delete []" << array << endl;
delete[] array;
}
上述代码中捕获异常是为了资源得到释放,而再次抛出异常是为了防止资源二次释放,这样 array 的资源就得到了释放:
异常规格说明的目的是为了让函数使用者知道该函数可能抛出的异常有哪些。 可以在函数的后面接 throw(类型),列出这个函数可能抛掷的所有异常类型。
函数的后面接 throw(),表示函数不抛异常。
若无异常接口声明,则此函数可以抛掷任何类型的异常。
// 这里表示这个函数会抛出A/B/C/D中的某种类型的异常
void fun() throw(A,B,C,D);
// 这里表示这个函数只会抛出bad_alloc的异常
void* operator new (std::size_t size) throw (std::bad_alloc);
// 这里表示这个函数不会抛出异常
void* operator delete (std::size_t size, void* ptr) throw();
但是以上的规范并不一定有人会遵守,编译器也不会做严格的检查,所以以上的规范可能并不准确。
C++11 中新增的 noexcept 关键字,表示不会抛异常
thread() noexcept;
thread (thread&& x) noexcept;
实际使用中很多公司都会自定义自己的异常体系进行规范的异常管理,因为一个项目中如果大家随意抛异常,那么外层的调用者基本就没办法玩了,所以实际中都会定义一套继承的规范体系。这样大家抛出的都是继承的派生类对象,捕获一个基类就可以了。
下面我们来模拟一套服务器开发中通常使用的异常继承体系。首先定义一个父类:
// 父类
class Exception
{
public:
Exception(const string& errmsg, int id)
:_errmsg(errmsg)
, _id(id)
{}
virtual string what() const
{
return _errmsg;
}
protected:
string _errmsg;
int _id;
};
子类继承父类,在子类中都需要重写 what() 函数,方便捕获到异常后调用对应子类的 what() 函数,其实就是多态的实现:
// 子类
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 = 'Jane'");
}
//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)
{
Sleep(500);
try
{
HttpServer();
}
catch (const Exception& e) // 这里捕获父类对象就可以
{
// 多态
cout << e.what() << endl;
}
catch (...)
{
cout << "Unkown Exception" << endl;
}
}
return 0;
}
我们看一下模拟的效果:
C++ 提供了一系列标准的异常,我们可以在程序中使用这些标准的异常。它们是以父子类层次结构组织起来的,如下所示:
下表是对上面层次结构中出现的每个异常的说明:
说明:实际中我们可以去继承 exception 类实现自己的异常类。但是实际中很多公司像上面一样自己定义一套异常继承体系。因为 C++ 标准库设计的不够好用。
例如:
int main()
{
try
{
vector v(10, 5);
// 这里如果系统内存不够也会抛异常
v.reserve(1000000000);
// 这里越界会抛异常
v.at(10) = 100;
}
// 这里捕获父类对象就可以
catch (const exception& e)
{
cout << e.what() << endl;
}
catch (...)
{
cout << "Unkown Exception" << endl;
}
return 0;
}
异常对象定义好了,相比错误码的方式可以清晰准确的展示出错误的各种信息,甚至可以包含堆栈调用的信息,这样可以帮助更好的定位程序的bug;
返回错误码的传统方式有个很大的问题就是,在函数调用链中,深层的函数返回了错误,那么我们得层层返回错误,最外层才能拿到错误。而C++异常机制,当调用链很深的时候,直接跳到处理错误的地方,不用层层返回。
很多的第三方库都包含异常,比如 boost、gtest、gmock 等等常用的库,那么我们使用它们也需要使用异常。
部分函数使用异常更好处理,比如构造函数没有返回值,不方便使用错误码方式处理。比如 T& operator
这样的函数,如果 pos 越界了只能使用异常或者终止程序处理,没办法通过返回值表示错误。
func() noexcept
的方式规范化。