hello6.txt

来自「java的一经典教程」· 文本 代码 · 共 29 行

TXT
29
字号
//	Prints greetings from two separate methods
//	on the screen
//	Note that each method calls the other
import javax.swing.JOptionPane;

public class Hello6Act2
{
   public static void splong()
   {
    	JOptionPane.showMessageDialog(null,
     		"Hello from method splong!");

		spling();
   }

   public static void spling()
   {
    	JOptionPane.showMessageDialog(null,
			"Hello from method spling!");

		splong();
   }

   public static void main(String[] args)
   {
		spling();
   		System.exit(0);
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?