How to throw exception from outside the try block in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

void function(int n) {
	cout << "function(int n) n = " << n << endl;
	if (n) throw n;
}

int main()
{
	try {
		function(0);
		function(1);
		function(999);
	}
	catch (int i) {
		cout << "catch i = " << i << endl;
	}

	return 0;
}


/*
run:

function(int n) n = 0
function(int n) n = 1
catch i = 1

*/

 



answered Jun 4, 2018 by avibootz

Related questions

2 answers 301 views
1 answer 186 views
1 answer 168 views
1 answer 146 views
146 views asked Oct 8, 2022 by avibootz
2 answers 210 views
210 views asked Nov 22, 2020 by avibootz
...