【C++】异常的使用和细节

简介: 【C++】异常的使用和细节

传统C语言错误异常的方式

C语言一般使用assert来处理错误,assert确实很不错,可以把错误的行数都提示出来,但是,assert有一个致命的缺点,就是触发assert之后就会终止程序,还有一点就是在release环境下,assert是不起作用的。

C++异常处理方式

异常是一种处理错误的方式,当触发了异常的判定条件,就会自动捕获异常信息,但是程序不会终止,会继续运行,就不会导致一个用户触发了异常导致所有用户掉线的情况了。

  • throw:程序出现问题的时候,通过throw去抛出异常的。
  • catch:异常可以通过catch捕获到,throw就是把信息传递给catch了。
  • try:在try代码块中可以放你想捕获异常的模块,try后面一般会跟很多个catch来捕获异常。
try
{
  // 保护的标识代码
}catch( ExceptionName e1 )
{
  // catch 块
}catch( ExceptionName e2 )
{
  // catch 块
}catch( ExceptionName eN )
{
  // catch 块
}

ExceptionName异常类名字

异常的使用

异常的抛出和匹配原则

  • 异常是通过抛出对象而引发的,匹配就是根据对象类型来匹配。
  • 触发了异常的代码,会从throw开始找最近的catch,然后被捕获。
  • 抛出异常之后,其实是一个即将被销毁的变量,需要生成一份拷贝对象,因为抛出的异常对象是一个临时的对象,出了作用域会被销毁的,被捕获的也是这个拷贝对象。
  • catch(…)可以捕获任意类型的异常,但是没有错误信息。
  • 抛出的异常类型可以是派生类的对象,然后用基类捕获。

#include<iostream>
using namespace std;
double Division(int a, int b)
{
  if (b == 0)
  {
    throw "除0错误!";
  }
  else
  {
    return double(a / b);
  }
}
void Func()
{
  int a,b;
  cin >> a >> b;
  cout << Division(a, b) << endl;
}
int main(void)
{
  try
  {
    Func();
  }
  catch (const char* errmsg)
  {
    cout << errmsg << endl;
  }
  catch (...)
  {
    cout << "未知错误" << endl;
  }
  return 0;
}

异常的重新抛出

有可能单个的catch不能完全处理一个异常,在进行一些校正处理以后,希望再交给更外层的调用 链函数来处理,catch则可以通过重新抛出将异常传递给更上层的函数进行处理。

#include<iostream>
using namespace std;
double Division(int a, int b)
{
  if (b == 0)
  {
    throw "除0错误!";
  }
  else
  {
    return double(a / b);
  }
}
void Func()
{
  int* arr = new int[10];
  int a, b;
  cin >> a >> b;
  cout << Division(a, b) << endl;
  cout << "delete[]" << arr << endl;
  delete[]arr;
}
int main(void)
{
  try
  {
    Func();
  }
  catch (const char* errmsg)
  {
    cout << errmsg << endl;
  }
  catch (...)
  {
    cout << "未知错误" << endl;
  }
  return 0;
}

对于上述程序,如果触发了异常,arr的空间不会正确释放,因此会导致内存泄漏,可以如下修改,在**Func()**当中进行二次捕获异常。

#include<iostream>
using namespace std;
double Division(int a, int b)
{
  if (b == 0)
  {
    throw "除0错误!";
  }
  else
  {
    return double(a / b);
  }
}
void Func()
{
  int* arr = new int[10];
  try
  {
    int a, b;
    cin >> a >> b;
    cout << Division(a, b) << endl;
  }
  catch(...){
    cout << "delete[]" << arr << endl;
    delete[]arr;
    throw;
  }
  cout << "delete[]" << arr << endl;
  delete[]arr;
}
int main(void)
{
  try
  {
    Func();
  }
  catch (const char* errmsg)
  {
    cout << errmsg << endl;
  }
  catch (...)
  {
    cout << "未知错误" << endl;
  }
  return 0;
}

这样就不会有空指针问题了。

异常安全问题

  • 最好不要再构造函数里面抛异常,可能导致初始化不完全。
  • 最好不要在析构函数内抛异常,可能导致资源清理不完全。

自定义异常体系

实际使用中很多公司都会自定义自己的异常体系进行规范的异常管理,因为一个项目中如果大家 随意抛异常,那么外层的调用者基本就没办法玩了,所以实际中都会定义一套继承的规范体系。 这样大家抛出的都是继承的派生类对象,捕获一个基类就可以了

#include<iostream>
#include<Windows.h>
#include<string>
using namespace std;
double Division(int a, int b)
{
  if (b == 0)
  {
    throw "除0错误!";
  }
  else
  {
    return double(a / b);
  }
}
void Func()
{
  int* arr = new int[10];
  try
  {
    int a, b;
    cin >> a >> b;
    cout << Division(a, b) << endl;
  }
  catch(...){
    cout << "delete[]" << arr << endl;
    delete[]arr;
    throw;
  }
  cout << "delete[]" << arr << endl;
  delete[]arr;
}
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 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;
};
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;
  }
};
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)
  {
    try 
    {
      Sleep(500);
      HttpServer();
    }
    catch (const Exception& e) // 这里捕获父类对象就可以
    {
      // 多态
      cout << e.what() << endl;
    }
    catch (...)
    {
      cout << "Unkown Exception" << endl;
    }
  }
  return 0;
}

如果是网络错误,我们可以写成重试3次发送再抛出异常。

void SeedMsg(const string& s)
{
  // 要求出现网络错误重试三次
  srand(time(0));
  if (rand() % 3 == 0)
  {
    throw HttpServerException("网络错误", 500, "get");
  }
  else if (rand() % 4 == 0)
  {
    throw HttpServerException("权限不足", 101, "post");
  }
  cout << "发送成功:" << s << endl;
}
void HttpServer()
{
  // 要求出现网络错误,重试3次
  string str = "今晚一起看电影怎么样?";
  //cin >> str;
  int n = 3;
  while (n--)
  {
    try
    {
      SeedMsg(str);
      // 没有发生异常
      break;
    }
    catch (const Exception& e)
    {
      // 网络错误 且  重试3次内
      if (e.getid() == 500 && n > 0)
      {
        continue;
      }
      else
      {
        throw e; // 重新抛出
      }
    }
  }
}

C++标准库的异常体系

目录
相关文章
|
6月前
|
算法 编译器 C语言
【C++ 异常】C++ 标准库异常类及其应用
【C++ 异常】C++ 标准库异常类及其应用
76 0
|
6月前
|
C++
C++ 捕获所有异常并拿到错误原因的方法
C++ 捕获所有异常并拿到错误原因的方法
190 0
|
6月前
|
安全 算法 C++
【C++ 异常 】深入了解C++ 异常机制中的 terminate()处理 避免不必要的错误(三)
【C++ 异常 】深入了解C++ 异常机制中的 terminate()处理 避免不必要的错误
141 0
|
6月前
|
存储 安全 算法
【C/C++ 关键字 函数说明符 】C++ noexcept 关键字(指定某个函数不抛出异常)
【C/C++ 关键字 函数说明符 】C++ noexcept 关键字(指定某个函数不抛出异常)
77 0
|
6月前
|
SQL 安全 程序员
C++:异常
C++:异常
58 7
|
6月前
|
小程序 编译器 Linux
C++ 异常原理:以一个小程序为例
作者在调查某个 bug 时涉及到 C++ 异常,借此机会以本文把 C++ 异常机制梳理清楚供大家参考。
|
6月前
|
安全 Java 程序员
【C++】异常 -- 详解
【C++】异常 -- 详解
|
4月前
|
C++
C++ 异常机制问题之捕获异常的问题如何解决
C++ 异常机制问题之捕获异常的问题如何解决
|
4月前
|
安全 Java 程序员
【C++11】异常知多少
【C++11】异常知多少
43 7
|
6月前
|
缓存 安全 Java
从C语言到C++_35(异常)C++异常的使用+异常体系+异常优缺点(下)
从C语言到C++_35(异常)C++异常的使用+异常体系+异常优缺点
52 7