📄 nothelloworldapplet.java
字号:
/**
@version 1.21 2004-05-07
@author Cay Horstmann
*/
/*
The following HTML tags are required to display this applet in a browser:
<applet code="NotHelloWorldApplet.class" width="300" height="100">
</applet>
*/
import javax.swing.*;
public class NotHelloWorldApplet extends JApplet
{
public void init()
{
JLabel label = new JLabel("Not a Hello, World applet", SwingConstants.CENTER);
add(label);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -