码迷,mamicode.com
首页 > 其他好文 > 详细

throws 和 throw

时间:2016-07-31 01:41:17      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

package unit5;

public class Person {
    private int age;
    private String name;
    public String getName() {
        return name;
    }
    public int  getAge() {
        return age;
    }
    public void setAge(int a) throws Exception {
        if(a<0){
            throw new Exception("出现异常,年龄不能小于零");
        }
        if(a>1000){
            throw new Exception("出现异常,年龄不能大于1000");
        }
        age = a;
    }
    public void setName(String name) {
        this.name=name;
    }
    public void display() {
        System.out.println("我叫 "+name+"今年 "+age+" 岁。");
    }

}

 

package unit5;

public class Throwsdeml {
    public static void main(String[] args) {

        Person zhang = new Person();
        try{
            zhang.setName("张三");
            zhang.setAge(2000);
            zhang.display();
        }catch (Exception e) {

            System.out.println(e.getMessage());
        }
    
    }
}

 

throws 和 throw

标签:

原文地址:http://www.cnblogs.com/superxuezhazha/p/5722126.html

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