class Obj
{
public:
Obj()
{
try
{
checked = false;
throw 1;
value = 1;
}
catch(int a)
{
if( a == 1 )
{
cout << "Exception" << endl;
}
};
}
const int getValue() const { return value;}
private:
int value;
bool checked;
};
int main()
{
Obj* obj = new Obj;
cout << obj->getValue();
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать