throws和throw区别
- throws是用来声明一个方法可能抛出的所有异常信息,throws是将异常声明但是不处理,而是将异常往上传,谁调用我就交给谁处理。
- 而throw则是指抛出的一个具体的异常类型
关键字:throw,throws,try和catch的用法如下:
- throws出现在方法的声明中,表示该方法可能会抛出的异常,允许throws后面跟着多个异常类型。
- throw出现在方法体中,用于抛出异常。当方法在执行过程中遇到异常情况时,将异常信息封装为异常对象,然后throw。
- try出现在方法体中,它自身是一个代码块,表示尝试执行代码块的语句。如果在执行过程中有某条语句抛出异常,那么代码块后面的语句将不被执行。
theows操作代码:
class Math{ public int div(int i,int j) throws Exception{ int t=i/j;//可能出现异常,交给被调用处处理 return t; } } public class ThrowsDemo { public static void main(String args[]) throws Exception{ Math m=new Math();//处理异常 System.out.println("操作:"+m.div(5,0)); System.out.println("操作:"+m.div(10,5)) } }
throw操作代码:
public class TestThrow { public static void main(String[] args) { try { //调用带throws声明的方法,必须显式捕获该异常 //否则,必须在main方法中再次声明抛出 throwChecked(-3); } catch (Exception e) { System.out.println(e.getMessage()); } //调用抛出Runtime异常的方法既可以显式捕获该异常, //也可不理会该异常 throwRuntime(3); } public static void throwChecked(int a)throws Exception { if (a > 0) { //自行抛出Exception异常 //该代码必须处于try块里,或处于带throws声明的方法中 throw new Exception("a的值大于0,不符合要求"); } } public static void throwRuntime(int a) { if (a > 0) { //自行抛出RuntimeException异常,既可以显式捕获该异常 //也可完全不理会该异常,把该异常交给该方法调用者处理 throw new RuntimeException("a的值大于0,不符合要求"); } } }