黑马程序员技术交流社区
标题:
演示如何处理异常
[打印本页]
作者:
姜群
时间:
2015-9-4 22:16
标题:
演示如何处理异常
public class Brunt {
public static int count(int m,int n){
return m * n;
}
public static void main(String args[]) throws Exception{
try{
int result = count(12315,57876876);
System.out.println(result);
}
catch (Exception e) {
e.printStackTrace();
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2