码迷,mamicode.com
首页 > 编程语言 > 详细

java中异常(Exception)的定义,意义和用法。举例

时间:2018-09-24 11:31:37      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:举例   优雅   oid   load   tde   ati   lan   int   let   

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)的定义,意义和用法。举例

标签:举例   优雅   oid   load   tde   ati   lan   int   let   

原文地址:https://www.cnblogs.com/mark-to-win/p/9694748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!