📄 helloapplet.txt
字号:
1: import java.awt.*;
2: import java.applet.Applet;
3:
4: public class HelloApplet extends Applet
5: {
6: public void init() {
7: setLayout(new BorderLayout());
8: add("Center",new Button("你好Java Applet"));
9: }
10: }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -