📄 threadappletdemo1.java
字号:
/**
*A simple thread program with applet
*how to clear the screen???
*2004.12.23. xhcprince
*/
import java.applet.*;
import java.awt.*;
public class threadAppletDemo1 extends Applet
{
char c = 'a';
Font f;
public void init()
{
f = new Font("TimesNewRoman",Font.BOLD,18);
setFont(f);
}
public void paint(Graphics g)
{
while(true)
{
if(c >= 'z')
c = 'a';
++c;
g.drawString(" " + c,11,24);
try
{
Thread.sleep(1000);
}
catch(InterruptedException e)
{
System.out.println(e.getMessage());
}
}
}
}
/*
<applet code = "threadAppletDemo1.class" width = 600 height = 160>
</applet>
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -