我有一些代码:
public static void a() throws NumberFormatException {
return;
}
public static void b() throws InterruptedException{
return;
}
public static void main(String[] args) {
a();
b();
}
并且 Eclipse 说我必须将 try/catch 包围到函数调用 b(),但我不必使用 a() 调用来做到这一点。为什么?如何使函数 make 在被调用时用 try 和 catch 包围?