A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Aaron9527 中级黑马   /  2016-6-2 22:39  /  278 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package cn.itcast.自定义异常;
class Student{
        private int age;

        @Override
        public String toString() {
                return "Student [age=" + age + ", getClass()=" + getClass()
                                + ", hashCode()=" + hashCode() + ", toString()="
                                + super.toString() + "]";
        }

        public Student() {
                super();
        }

        /**
         * @return the age
         */
        public int getAge() {
                return age;
        }

        /**
         * @param age the age to set
         */
        public void setAge(int age)throws AgeException {
                if(age>50||age<15){
                        throw new AgeException("您输入的年龄不正确,年龄需要在15~50岁之间!");
                }
                this.age=age;
        }

        public Student(int age) {
                super();
                this.age = age;
        }
       
}
public class Demo {
        public static void main(String[] args) {
                Student list = new Student();
                try {
                        list.setAge(2000);
                } catch (AgeException e) {
                        System.out.println("出现异常了:"+e.getMessage());
                        e.printStackTrace();
                }
                System.out.println(list.getAge());
        }
}










1 个回复

倒序浏览
package cn.itcast.自定义异常;

public class AgeException extends Exception {
        public AgeException(String message){
                super(message);
        }
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马