void foo(void)
{
throw std::exception("");
}
void bar(void)
{
try
{
foo():
}
catch(...)
{
throw;
}
}
void baz(void)
{
try
{
bar();
}
catch(...)
{
}
}
是什麼巴茲()趕上?一個std ::異常或其他東西?
感謝您的幫助!
感謝您的幫助。 – Virus721