public class ThreadDemo1
{
public static void main(String [] args)
{
Thread tt =new TestThread();
//new Thread().start()//创建一个新的线程
tt.setDaemon(true);//后台线程
tt.start();//run();//多线程
int index =0;
while(true)
{
if(index++ == 100)
{
try(tt.join());catch(Exception e){}
}
System.out.println("main():"+Thread.currentThread().getName());
}
}
}
基础部分线程的问题
红颜色的代码部分怎么改也通不过 myeclipse的编译 求助 |