Java
Python
数据库
算法
工具
资源
博客
前端
后端
官方文档
MMMM
116字小于1分钟
2024-08-08
当某个方法抛出了异常时,如果当前方法没有捕获异常,异常就会被抛到上层调用方法,直到遇到某个 try ... catch 被捕获为止
try ... catch
抛出异常分两步
创建某个 Exception 的实例
Exception
用 throw 语句抛出
throw
public static void main(String[] args) { String str = "H2ello"; if (!"Hello".equals(str)) { throw new RuntimeException("str 值不是 Hello"); } }