共计 757 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以通过继承 Exception 类或其子类来创建自定义异常。以下是自定义异常的步骤:
-
创建一个类,命名为自定义异常的名称,通常以 Exception 结尾,例如
CustomException
。 -
继承 Exception 类或其子类,以此来创建自定义异常类。例如:
public class CustomException extends Exception {//...
}
- 在自定义异常类中添加构造函数,可以根据需要添加不同的构造函数。例如:
public class CustomException extends Exception {public CustomException() {super();}
public CustomException(String message) {super(message);
}
public CustomException(String message, Throwable cause) {super(message, cause);
}
}
- 可以根据需要在自定义异常类中添加其他方法或属性。
使用自定义异常时,可以在需要抛出异常的地方使用 throw
关键字抛出自定义异常的实例。例如:
public void doSomething() throws CustomException {//...
throw new CustomException("Something went wrong.");
}
然后,在调用 doSomething
方法的地方可以使用 try-catch
块来捕获并处理自定义异常。例如:
try {doSomething();
} catch (CustomException e) {System.out.println("CustomException caught: " + e.getMessage());
}
丸趣 TV 网 – 提供最优质的资源集合!
正文完