比较throw和throws的异同:
throw:生成一个异常对象,并抛出。使用在方法内部< - >自动抛出异常对象
throws:处理异常的方式。使用在方法声明处的末尾
package com.atguigu.java2;public class StudentTest {public static void main(String[] args) {try {Student s = new Student();s.regist(-1001);System.out.println(s);} catch (Exception e) {// e.printStackTrace();System.out.println(e.getMessage());}}}class Student{private int id;public void regist(int id) throws Exception{if(id > 0){this.id = id;}else{// System.out.println("您输入的数据非法!");//手动抛出异常对象// throw new RuntimeException("您输入的数据非法!");throw new Exception("您输入的数据非法!");}}@Overridepublic String toString() {return "Student [id=" + id + "]";}}
