• 异常处理


    1、throwable类  (异常抛出)
       tostring()  返回该异常的名字和详细的字符串
       getMessage() 返回该异常的提示信息
       printStackTrace() 返回该异常的所有信息
    2、try...Catch   (main方法中不用throwable,用try...catch处理)
       try{
            //需要被检测的语句
              }
        Catch(异常类 变量){
            //异常的处理语句
         }
        finally{
            //一定会被执行的语句
         }
    public static void main(String[] args){
            try {
                fun(-1);
            } catch (Exception e) {
                //e.printStackTrace();
              //System.out.println(e.toString());
                System.out.println(e.getMessage());
            }finally{
                System.out.println("最终的语句");
            }
        }
        public static double fun(int i){
            if(i<0)
                 throw new RuntimeException("元不存在");
                  return i*i*Math.PI;
        }
    }

  • 相关阅读:
    字典序
    分数线划定
    聪明的质检员
    月考
    山头狙击战
    如何查看屏幕touch driver是否在正常工作
    python 核心编程课后练习(chapter 6)
    python 核心编程课后练习(chapter 5)
    python 核心编程课后练习(chapter 3)
    python 核心编程课后练习(chapter 2)
  • 原文地址:https://www.cnblogs.com/fbbg/p/10623521.html
Copyright © 2020-2023  润新知