Java中的throws关键字具有什么功能呢?
下文笔者讲述java中throws关键字的功能简介说明,如下所示
throws关键字
throws语句是Java中 用于声明可能会抛出异常的方法的一种机制 当一个方法可能会发生异常时 可使用throws语句 将异常抛给调用该方法的代码块 由调用该方法的代码块进行处理例
public class Demo { public static void main(String[] args) { try { divide(10, 0); } catch (ArithmeticException e) { System.out.println(e.getMessage()); } } public static int divide(int num1, int num2) throws ArithmeticException { if (num2 == 0) { throw new ArithmeticException("除数不能为0!"); } return num1 / num2; } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。