线程问题
class ThreadDemo1{
public static void main(String args [])
{
new TestThread().start();
while(true)
{
System.out.println("main():"+Thread.currentThread().getName() );
}
}
}
class TestThread extends Thread
{
public void run()
{
while(true)
{
System.out.println("run():"+Thread.currentThread().getName() );
}
}
}
这句话是怎么解释的啊 方法和方法之间怎么还会用"."啊?代表什么呢?