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

javaSE之运行时异常和编译时异常

时间:2019-07-01 00:47:21      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:sys   etag   sage   col   string   exce   ring   编译   pac   

运行时异常继承自RuntimeException;

package foundationEnhance;


public class Person {
    private int age;

    public Person(int age) {
        super();
        if(age<0){
            throw new ageException("年龄不可以为负数!");
        }
        this.age = age;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        if(age<0){
            throw new ageException("年龄不可以为负数!");
        }
        this.age = age;
    }
}

 

package foundationEnhance;

public class testPerson {
    public static void main(String[] args) {
        Person p=new Person(-1);
        p.setAge(-2);
        System.out.println(p.getAge());
    }
}

 

package foundationEnhance;

public class ageException extends RuntimeException{
    public ageException() {

    }

    public ageException(String message) {
        super(message);
    }
}

 

 

编译时异常继承自Exception;

 看看前面的视频,关于运行时异常和编译时异常;

...未完待补充

javaSE之运行时异常和编译时异常

标签:sys   etag   sage   col   string   exce   ring   编译   pac   

原文地址:https://www.cnblogs.com/shijinglu2018/p/11111847.html

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