本帖最后由 林康春 于 2012-6-6 19:22 编辑
class MyThread implements Runnable
{
public static void run() //这里加个static,出现的问题的意思是什么???
{
for (int i=0; i<50;i++ )
{
System.out.println(Thread.currentThread ().getName()+"运行--->"+i);
}
}
}
public class ThreadJoinDemo
{
public static void main(String[] args)
{
MyThread mt=new MyThread();
Thread t=new Thread(mt,"线程");
t.start();
for (int i=0;i< x50 ;i++ )
{
if (i>10)
{
try
{
t.join();
}
catch (Exception e)
{
}
}
System.out.println("Main 线程运行---->"+i);
}
}
}
|
|