码迷,mamicode.com
首页 > 编程语言 > 详细

C++异常捕获与解决函数多参数返回

时间:2015-04-24 12:34:49      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

捕获异常

double divideNumber(double num1,double num2){

	if (num2==0) {
		throw exception();
	}
	return num1/num2;
}

	try{
		cout << divideNumber(1,3) << endl;
		cout << divideNumber(1,0) << endl;
	}catch(const exception& exp) {
		cout << "An exception was caught !" << endl;
	}

函数多参数返回(不通过返回参数)

void addNum(int& a)
{
	a++;
}


C++异常捕获与解决函数多参数返回

标签:

原文地址:http://blog.csdn.net/qq285016127/article/details/45244287

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!