class StopThread implements Runnable
{
private boolean flag = true;
public synchronized void run()
{
while(flag)
{
try
{
wait();
}
catch(InterruptedException e)
{
System.out.println(Thread.currentThread().getName()+"....Exception");
}
System.out.println(Thread.currentThread().getName()+"....run");
}
}
public void changeFlag()
{
flag = false;
}
}
class StopThreadDemo
{
public static void main(String[] args)
{
StopThread st = new StopThread();
Thread t1 = new Thread(st);
Thread t2 = new Thread(st);
t1.start();
t2.start();
int num = 0;
while(true)
{
if(num++ == 60)
{
st.changeFlag();
break;
}
System.out.println(Thread.currentThread().getName()+"......."+num);
}
System.out.println("over");
}
}
这是程序源码。在定义t1、t2的时候使用命名对象,编译结果如第一个图那样。
但是把Thread t1 = new Thread(st);
Thread t2 = new Thread(st);
t1.start();
t2.start();
这几句改成new Thread(st).start();
new Thread(st).start();
之后,编译结果就变成了这个样子。
这是什么意思啊
|
|