内向草莓

文章
5
资源
0
加入时间
2年10月21天

throw 和 throws1 throw2 throws3 区别

throw 和 throws1 throw2 throws3 区别1 throwthrow关键字,用于主动地抛出异常;正常情况下,当除数为0的时候,程序会主动抛出ArithmeticException;当时如果我们想要除数为1的时候也抛出ArithmeticException异常,就可以使用throw关键字主动地抛出异常。throw new Exception_class("异常类错误信息!");语法也非常简单,throw 关键字后跟上 new 关键字,以及异常的类型还有参数