C++异常处理

语法应用

bool fun()
{
	int a = 7, b = 0;
	//if (b == 0) throw "error!";
	if (b == 0) throw 404.1;
	int c = a / b;
}

int main(int argc, const char** argv)
{
	try
	{
		fun();
	}

	catch(int e){
		cout << e << endl;
	}
	catch (const char *error)
	{
		cout << error << endl;
	}

	catch (...) {
		cout << "捕获任何异常,通用性强但是匹配性差" << endl;
	}
	
	return 0;
}

处理除零异常

#include<iostream>
using namespace std;
int divide(int x, int y) {
	if (y == 0){
		throw x;
	}
	return x / y;
}

int main()
{
	try{
		cout << " divide(1, 2):\t" << divide(1, 2) << endl;
		cout << " divide(2, 0):\t" << divide(2, 0) << endl;
		cout << " divide(4, 2):\t" << divide(4, 2) << endl;
	}catch (int e){
		cout << e << " divide is zero" << endl;
	}
	cout << "That's OK!";
    return 0;
}

异常接口说明

  • void fun() throw(A, B, C, D)在函数声明中列出可能抛掷的所有异常类型
  • 若不抛出任何异常 void fun() throw()
  • void fun()可以抛掷任何异常

异常类的例子

C++异常处理真正功能在于为异常抛掷前构造的所有局部对象自动调用析构函数

#include<iostream>
#include<string>
using namespace std;

class myException
{
public:
	myException(const string& message) :m_message(message)  {}
	myException() {}
	const string& getMessage() const {
		return m_message;
	}
private:
	string m_message;
};

class Demo
{
public:
	Demo() {
		cout << "Constructor of Demo" << endl;
	}
	~Demo(){
		cout << "Destructor of Demo" << endl;
	}

};

void func() throw (myException) {
	Demo d;
	cout << "Throw myException in func()" << endl;
	throw myException("exception thrown by func()");
}



int main()
{
	cout << "in main thread" << endl;
	try{
		func();
	}catch (myException& e){
		cout << "caught an exception: " << e.getMessage() << endl;
	}
	cout << "see you!";
    return 0;
}

C++标准库异常处理

异常 描述
std::exception 该异常是所有标准 C++ 异常的父类。
std::bad_alloc 该异常可以通过 new 抛出。
std::bad_cast 该异常可以通过 dynamic_cast 抛出。
std::bad_exception 这在处理 C++ 程序中无法预期的异常时非常有用。
std::bad_typeid 该异常可以通过 typeid 抛出。
std::logic_error 理论上可以通过读取代码来检测到的异常。
std::domain_error 当使用了一个无效的数学域时,会抛出该异常。
std::invalid_argument 当使用了无效的参数时,会抛出该异常。
std::length_error 当创建了太长的 std::string 时,会抛出该异常。
std::out_of_range 该异常可以通过方法抛出,例如 std::vector 和 std::bitset<>::operator
std::runtime_error 理论上不可以通过读取代码来检测到的异常。
std::overflow_error 当发生数学上溢时,会抛出该异常。
std::range_error 当尝试存储超出范围的值时,会抛出该异常。
std::underflow_error 当发生数学下溢时,会抛出该异常。
全部评论

相关推荐

10-27 17:26
东北大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务