try、catch能不能嵌套使用
这种格式对吗?
try
{
//dosomething
}
catch
{
try
{
//doothersomething
}
catch
{
}
}
这种格式对吗?
try
{
//dosomething
}
catch
{
try
{
//doothersomething
}
catch
{
}
}
2006-08-15 17:20