class ThreadTest extends Thread
{
public void run()
{
System.out.println("hello thread");
}
}
class ThreadDemo
{
public static void main(String[] args)
{
ThreadTest tt=new ThreadTest();
tt.start();
System.out.println("Hello World!");
}
}
不知道大神都是怎么理解它的?
|
|