• 自定义异常



    * 自定义异常:如果JDK中异常类型无法满足程序需要。
    * 步骤:
    * 1.编写自定义异常类:继承Exception或RuntimeException
    * 2.编写构造方法,继承父类的实现
    * 3.实例化自定义异常对象
    * 4.使用throw抛出

    例:

    public class SexException extends Exception{
    public SexException(String message){
    super(message);
    }
    }

    public class TestSexException {
    public static void main(String[] args) {
    Student student = new Student();
    student.setName("张三");
    try {
    student.setAge(200);
    student.setSex("男");
    } catch (SexException e) {
    // e.printStackTrace();
    System.err.println(e.getMessage());
    }catch(AgeException e){
    System.err.println(e.getMessage());
    }finally{
    System.out.println("设置完成!");
    }
    System.out.println(student);

    }
    }

    public class Student {
    private String name;
    private int age;
    private String sex;
    public String getName() {
    return name;
    }
    public void setName(String name) {
    this.name = name;
    }

    public int getAge() {

    return age;

    }

    public void setAge(int age) throws AgeException{

    if(age>=1&&age<=100){

    this.age = age;

    }else{

    throw new AgeException("年龄必须在1~100之间!");

    }

    }

    public String getSex() {

    return sex;

    }

    public void setSex(String sex) throws SexException{

    if(sex.equals("男")||sex.equals("女")){

    this.sex = sex;

    }else{

    throw new SexException("性别必须为男或女");

    }

    }

    @Override

    public String toString() {

    return "Student [name=" + name + ", age=" + age + ", sex=" + sex + "]";

    }

    }

     

  • 相关阅读:
    C编程规范
    c# 闭包 小例
    计算前后2行的时间差
    判断是不是奇数
    条件表达式工具类
    代码重构-5 取消类的私有变量(实例变量)
    代码重构-4 通用方法 用 static
    代码重构-3 用Tuple代替 out与ref
    代码重构-2 简单不变的 if else 用字典代替
    代码重构-1 对参数中有 bool值的拆分
  • 原文地址:https://www.cnblogs.com/benpaozhimeng/p/6973637.html
Copyright © 2020-2023  润新知