14
Devo usare uno specificatore di eccezione in C ++?
In C ++, è possibile specificare che una funzione può o non può generare un'eccezione utilizzando uno specificatore di eccezione. Per esempio: void foo() throw(); // guaranteed not to throw an exception void bar() throw(int); // may throw an exception of type int void baz() throw(...); // may throw an …