java中异常(Exception)的定义,意义和用法。举例
Posted mark-to-win
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中异常(Exception)的定义,意义和用法。举例相关的知识,希望对你有一定的参考价值。
1.异常(Exception)的定义,意义和用法 (视频下载) (全部书籍)
我们先给出一个例子,看看异常有什么用?
例: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)
{
。。。。。。。。。。。。。。。。。
详情请进:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner5_web.html#PointDefinitionUsageException
以上是关于java中异常(Exception)的定义,意义和用法。举例的主要内容,如果未能解决你的问题,请参考以下文章