一个try catch多个异常吗_百度知道
2016年3月2日 - 一个try catch多个异常吗#include <iostream>using namespace std;void fun3(){ throw 100; throw 2.232132;}void fun2(){ try{ fun3(); } ...
一个try 多个catch的问题 - ITeye问答
2011年4月18日 - 一个try 多个catch的问题5 try{ } catch(NullPointerException n){ } catch(Exception e){ } 这段代码是有错误的, 帮忙怎么解释一下问题补充: 牟盖...