📄 test.java
字号:
package com.ata.java2.shoppingcart;
public class Test
{
public static void fun( )throws Exception
{ try
{
int a=8/0;
//throw new Exception("异常");
//throw new ArithmeticException("异常");
System.out.println("fun");
}
catch(Exception e)
{
System.out.println(e);
}
}
public static void main(String[]args)throws Exception
{
fun();
System.out.println("main");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -