java中异常(Exception)的定义,意义和用法
异常(Exception)的定义,意义和用法
我们先给出一个例子,看看异常有什么用?
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
例:1.1-本章源码
public class Test {
public static void main(String[] args) {
int userInput=0;
int I = 6 / userInput;
System.out.println("马克-to-win:优雅结束");
}
}
输出结果:
Exception in thread "main" java.lang.ArithmeticException: / by zero
at Test.main(Test.java:4)
例:1.1.2-本章源码
public class Test {
public static void main(String[] args) {
try
{
int userInput=0;
int I = 6 / userInput;
System.out.println("马克-to-win:inside try");
}
/*系统把错误信息放在Exception的对象e中,马克-to-win*/
catch(Exception e)
{
System.out.println(e);
}
System.out.println("马克-to-win:优雅结束");
}
}
输出结果:
java.lang.ArithmeticException: / by zero
马克-to-win:优雅结束