?? 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 + -