本帖最后由 zhoubinjian 于 2016-4-3 14:12 编辑
/*
开启四个窗口卖票,一共有100张票;安全问题:当多条语句在操作同一个线程共享数据时,一个线程对多条语句只执行了一部分,还没有执行完,
另一个线程参与了进来执行,导致共享数据的错误;
解决方案:对多条操作共享数据的语句,只能让一个线程只能执行完,在执行过程中,其它线程不能参与进来。
同步代码块,synchronized(对象)
{ 需要被同步 的代码 }
*/
class Neibu implements Runnable
{ private int num=100;
Object obj=new Object();
public void run()
{
while(true)
{
synchronized(obj)
{
if(num>0)
{
try
{
Thread.sleep(10);
}
catch (Exception e)
{
}
System.out.println(Thread.currentThread().getName()+"num---"+num--);
}
}
}
}
}
class Demo
{
public static void main(String[] args)
{
Neibu f=new Neibu();
Thread t1=new Thread(f);
Thread t2=new Thread(f);
Thread t3=new Thread(f);
Thread t4=new Thread(f);
t1.start();
t2.start();
t3.start();
t4.start();
}
}
|
|