LINUKS BLOG

Make progress is the topic for ever...

My Photo
Name:
Location: China

It's a fans of computer/ Computer is my favorite/ Making progress is the topic for ever...

Friday, November 02, 2007

Java 中的多线程

import java.awt.*;
public class MainFrame extends Frame implements Runnable
{
public MainFrame(String title)
{
super(title);
……
new Thread(this).start();
……
}
……
public void run()
{
try
{
while(true)
{
this.sleep(1000);
//这里写调用的方法名

}
}
}
}

0 Comments:

Post a Comment

<< Home