worldclockapp.java

来自「很好的程序欢迎大家来下载。初学者很有用的。」· Java 代码 · 共 18 行

JAVA
18
字号
import javax.swing.*;public class WorldClockApp extends JApplet {  /** Construct the applet */  public WorldClockApp() {    getContentPane().add(new WorldClockControl());  }  public static void main(String[] args) {    WorldClockApp applet = new WorldClockApp();    JFrame frame = new JFrame("WorldClockApp");    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    frame.getContentPane().add(applet, java.awt.BorderLayout.CENTER);    frame.setSize(400, 320);    frame.setVisible(true);  }}

⌨️ 快捷键说明

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