Ho un problema con il seguente codice. Come possiamo vedere ho già gestito l'eccezione lanciata dal costruttore di A nel costruttore di C, perché dovrei preoccuparmi di catturare e gestire nuovamente l'eccezione nella funzione principale?Elenco di inizializzazione costruttore C++ eccezioni di lancio
#include <iostream>
class WException : public std::exception
{
public:
WException(const char* info) : std::exception(info){}
};
class A
{
public:
A(int a) : a(a)
{
std::cout << "A's constructor run." << std::endl;
throw WException("A constructor throw exception.");
}
private:
int a;
};
class B
{
public:
B(int b) : b(b)
{
std::cout << "B's constructor body run." << std::endl;
throw WException("B constructor throw exception");
}
private:
int b;
};
class C : public A, public B
{
public:
C(int a, int b) try : A(a), B(b)
{
std::cout << "C's constructor run." << std::endl;
}
catch(const WException& e)
{
std::cerr << "In C's constructor" << e.what() << std::endl;
}
};
int main(int argc, char* argv[])
{
try
{
C c(10, 100);
}
catch(const WException& e)
{
std::cerr << "In the main: " << e.what() << std::endl;
}
return 0;
}
Fa eccezione in realtà propagano dal costruttore 'C' di? Se no, perché riprenderlo? – arne
Chi ti ha suggerito di rilevare l'eccezione anche in 'main()'? Fagli questa domanda! – Nawaz
@Nawaz, o lei, ciao. Non c'è da meravigliarsi che non ci siano donne in questa professione: p – chris