C++类模板中使用异常知识点

这一篇主要记录了类模板中使用异常类的知识点

类模板中使用异常类的时候,异常类同样可以进行模板化

下面通过这个小案例来明白这个知识点

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

class Error :public exception{


};


template <class T>
class Myerror{

public:
	void showError(){
	   if(std::strcmp(typeid(T).name(),"int") == 0){
	      cout << "int error" << endl;
	   }else if(std::strcmp(typeid(T).name(),"char") == 0){
	      cout << "char error" << endl;
	   }
	}
};

template <class T>
class PrintTest{

public:
	PrintTest(T t){
	  if(t < 10){
		  throw &Myerror<T>();
	  }else if( t < 'B'){
	      throw &Myerror<T>();
	  }

	}

	template<class T>
	class MyPrint{
	public:
		MyPrint(T t){
		  if(t < 20){
			  throw &Myerror<T>();
		  }else if(t < 'B'){
		      throw &Myerror<T>();
		  }
		}
	
	};
};

template<class T>
void testException(T data){
	try{
		PrintTest<T> print2(data);
	}catch(Myerror<T>* error){
		error->showError();
	}
}


template<class T>
void testException2(T data){
	try{
		PrintTest<T>::MyPrint<T> mp(data);
	}catch(Myerror<T>* error){
		error->showError();
	}
}

void main(){

	testException2<char>('A');
	cin.get();
}

std标准异常的使用:

#include <iostream>
#include <stdexcept>

using namespace std;


class Student{
private:
	int *pstart;
public:
	Student(){
		pstart = new int[5];
	}

	int operator[](int index){
	   if(index < 0){
		   throw std::out_of_range("ba la la");
	   }else if(index  < 2){
		   throw std::logic_error("hahahha");
	   }
	   return pstart[index];
	}

};

void main(){
	try{
	Student stu;
	cout << stu[1] << endl;
	}catch(exception ex){
		cout << "error : because of" << ex.what() << endl;
	}

    cin.get();
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值