L
LitterTiger
Unregistered / Unconfirmed
GUEST, unregistred user!
void main()
{
try
{
throw(1);
}
catch(int t)
{
}
}
上面的程序在cb4中为什么执行到throw就说有exception,抓不到呀???
单独执行程序正常。
{
try
{
throw(1);
}
catch(int t)
{
}
}
上面的程序在cb4中为什么执行到throw就说有exception,抓不到呀???
单独执行程序正常。