public class Demo7
{
public static void main(String[] args)
{
try{
int c=sum(3,4); //throw new Exception(int c=sum(3,4);System.out.println();
System.out.println(c);
}catch(Exception e){
System.out.println(e);
}
}
public static int sum (int a,int b)throws Exception{
return a/ b;
}
}
以上程序主要是为了说明try{}Exception(){}的使用
throws Exception主要应用在方法上
原文地址:http://11588233.blog.51cto.com/11578233/1782215