📄 simpleapp.txt
字号:
001: import java.awt.*;
002:
003: public class SimpleApp {
004: public static void main(String args[]) {
005: System.out.println("Creating application window...");
006: Frame f = new Frame("Application Frame Window");
007: String s = "Press Ctrl+C to close this window!";
008: f.add(new TextArea(s, 4, s.length()));
009: f.pack();
010: f.show();
011: }
012: }
Return
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -