📄 worldclockapp.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -