public class Test7 {
public static void main(String[] args) {
// 调用Re()方法并打印输出
int num = Re();
System.out.println(num);
}
// 定义一个静态的Re()方法
public static int Re() {
// 先定义一个int x:并赋初始值
int x = 10;
// 异常处理
try {
System.out.println("try");
x = 20;
// 可能抛异常
throw new Exception();