📄 新建 文本文档.txt
字号:
class MyException extends Exception
{
private int detail;
MyException(int a)
{
detail = a;
dealThis();
}
public void dealThis()
{
System.out.println("发生了什么什么错误,该怎么做!");
}
public String toString()
{
return "MyExcpetion[" + detail +"]";
}
}
class ExceptionDemo
{
static void compute(int a) throws MyException
{
System.out.println("调用compute(" + a +")");
if(a > 10)
throw new MyException(a);
System.out.println("正常退出!");
}
public static void main(String[] args)
{
try
{
compute(1);
compute(20);
}
catch (MyException e)
{
System.out.println("异常信息:"+ e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -