test.java

来自「采用java实现的网上商店」· Java 代码 · 共 26 行

JAVA
26
字号
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 + =
减小字号Ctrl + -
显示快捷键?