异常就是代表程序出现的问题
父类:Exception
编译时异常:没有继承RuntimeException的异常,直接继承于Exception。编译阶段就会错误提示。
运行时异常:RuntimeException本身和子类。编译阶段没有错误提示,运行时出现。
作用
1.异常是用来查询bug的关键参考信息
2.异常可以作为方法内部的一种特殊的返回值,以便通知调用者底层的执行情况。
throws:
注意:写在方法定义处,表示声明一个异常告诉调用者,使用本方法可能会有那些异常。
-
编译时异常:必须要写
-
运行时异常:可以不写
throw:
注意:写在方法内,结束方法,手动抛出异常对象,交给调用者方法中下面的代码不在执行。
练习:
需求:
package myFunction;public class GirlFriend {private String name;private int age;public GirlFriend() {}public GirlFriend(String name, int age) {this.name = name;this.age = age;}public String getName() {return name;}public void setName(String name) {if(name.length()<3||name.length()>10){throw new RuntimeException();}this.name = name;}public int getAge() {return age;}public void setAge(int age) {if(age<18||age>40){throw new RuntimeException();}this.age = age;}@Overridepublic String toString() {return "GirlFriend{" +"name='" + name + '\'' +", age=" + age +'}';}
}
package myFunction;
import java.util.Scanner;
public class Test {public static void main(String[] args) {Scanner sc=new Scanner(System.in);GirlFriend gf=new GirlFriend();while (true) {try {System.out.println("姓名");String name = sc.nextLine();gf.setName(name);System.out.println("年龄");String ageStr=sc.nextLine();int age=Integer.parseInt(ageStr);gf.setAge(age);break;} catch (NumberFormatException e) {System.out.println("年龄的格式有误,请输入数字");continue;}catch (RuntimeException e) {System.out.println("姓名的长度或者年龄的范围有误");continue;}}System.out.println(gf);}
}
自定义异常:
步骤:
1.定义异常类
2.写继承关系
3.空参构造
4.带参构造
意义:就是为了让控制台的报错信息更加的见名知意。
package myFunction;public class NameFormatException extends RuntimeException{public NameFormatException() {}public NameFormatException(String message) {super(message);}
}
package myFunction;public class AgeOutOfBounds extends RuntimeException{public AgeOutOfBounds() {}public AgeOutOfBounds(String message) {super(message);}
}
package myFunction;public class GirlFriend {private String name;private int age;public GirlFriend() {}public GirlFriend(String name, int age) {this.name = name;this.age = age;}public String getName() {return name;}public void setName(String name) {if(name.length()<3||name.length()>10){throw new NameFormatException(name+"格式有误,长度应该为:3-10");}this.name = name;}public int getAge() {return age;}public void setAge(int age) {if(age<18||age>40){throw new AgeOutOfBounds(age+"超出了范围");}this.age = age;}@Overridepublic String toString() {return "GirlFriend{" +"name='" + name + '\'' +", age=" + age +'}';}
}
package myFunction;import java.util.Scanner;public class Test {public static void main(String[] args) {Scanner sc=new Scanner(System.in);GirlFriend gf=new GirlFriend();while (true) {try {System.out.println("姓名");String name = sc.nextLine();gf.setName(name);System.out.println("年龄");String ageStr=sc.nextLine();int age=Integer.parseInt(ageStr);gf.setAge(age);break;} catch (NumberFormatException e) {e.printStackTrace();continue;}catch (AgeOutOfBounds e) {e.printStackTrace();continue;}catch (NameFormatException e) {e.printStackTrace();continue;}}System.out.println(gf);}
}