testapplet.java
来自「下载地址 金山毒霸杀毒软件V2008特别版 对本站有问题请点击这里 教育」· Java 代码 · 共 20 行
JAVA
20 行
import java.applet.*;
import java.awt.*;
// note: in order to compile the applet, you
// must set this file as "Main" - select it
// in the project window, and then press F8.
// If you want to run the application version,
// set Tester.java as main.
// To run the applet, choose "Run Applet", or press
// Shift+F5. To run the application, press F5
public class TestApplet extends Applet
{
public void init()
{
this.setLayout(new BorderLayout());
this.add(new DrawCanvas(), "Center");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?