搶票線程使用同步塊修改
synchronized(this){};this鎖定的就是這個(gè)對(duì)象的資源
烏魯木齊網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,烏魯木齊網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為烏魯木齊上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的烏魯木齊做網(wǎng)站的公司定做!
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--);
}
}
集合:
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();
}
}
//最優(yōu)情況
public void test6()
{
if(num<0) //排除沒(méi)有票的情況
{
flag=false;
return;
}
synchronized(this)//排除多個(gè)線程搶一張票的情況
{
if(num<0)
{
flag=false;
return;
}
try {
Thread.sleep(200);
}catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);
}
}
public void test5()
{
if(num<0)
{
flag=false;
return;
}
synchronized(this)//剩一張票時(shí),同樣有三個(gè)線程在搶?zhuān)瑫?huì)出現(xiàn)負(fù)數(shù)
{
try {
Thread.sleep(200);
}catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);
}
}
public void test4()
{
synchronized(this)
{
if(num<0)
{
flag=false;
return;
} } //再判斷完后,同樣會(huì)出現(xiàn)多個(gè)線程搶一張票的情況
try {
Thread.sleep(200);
}catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);
}
public void test3()
{
synchronized((Integer)num) //鎖定必須鎖對(duì)象,并且鎖定的是對(duì)象地址,對(duì)象1,2,3的地址
//不同,所以鎖不住
{
if(num<0)
{
flag=false;
return;
}
try {
Thread.sleep(200);
}catch(InterruptedException e)
{
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"-->"+num--);
}
}
//修改同步塊
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--);
}
}