码迷,mamicode.com
首页 > 编程语言 > 详细

java 多线程-修改不安全线程2

时间:2019-08-14 09:40:41      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:art   抢票   web im   lse   test   throws   使用   run   pre   

抢票线程使用同步块修改
synchronized(this){};this锁定的就是这个对象的资源

public class n {

public static void main(String[]args) throws InterruptedException
{
web wb=new web();
new Thread(wb,"a").start();
new Thread(wb,"b").start();
new Thread(wb,"c").start();
}
}

class web implements Runnable{
int num=10;
private boolean flag=true;
public void run()
{
        while(flag)
        {
    test2();
        }
}
//修改同步块
public void test2()
{
    synchronized(this)
    {
if(num<0)
{
    flag=false;
    return;
}
try {
    Thread.sleep(200);
}catch(InterruptedException e)
{
    e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);

}

}

public synchronized void  test()

{   if(num<0)
        {
                flag=false;
    return;
}
try {
    Thread.sleep(200);
}catch(InterruptedException e)
{
    e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);

}
}

java 多线程-修改不安全线程2

标签:art   抢票   web im   lse   test   throws   使用   run   pre   

原文地址:https://blog.51cto.com/14437184/2429304

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!