📄 lazy.java
字号:
class Exception1 extends Exception
{}
class Exception2 extends Exception1
{}
class Exception3 extends Exception2
{}
class Lazy
{
public void foo(int i) throws Exception1
{
if (i==1)
throw new Exception1();
if (i==2)
throw new Exception2();
if (i==3)
throw new Exception3();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -