class Math{
public int div(int i,int j) throws Exception{ // 定义除法操作,如果有异常,则交给被调用处处理
int temp = i / j ;
return temp ;
}
};
public class ThrowsDemo01{
public static void main(String args[]){
Math m = new Math() ;
try{
System.out.println("除法操作:" + m.div(10,2)) ;
}catch(Exception e){
e.printStackTrace() ;
}
}
};
如果现在在主方法的声明上也使用了throws关键字,是不是就意味着主方法也可以不处理异常了? |
|