第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

以下程序?yàn)榱藢W(xué)習(xí)而寫,但是經(jīng)常發(fā)生死鎖,請(qǐng)問(wèn)為什么?

以下程序?yàn)榱藢W(xué)習(xí)而寫,但是經(jīng)常發(fā)生死鎖,請(qǐng)問(wèn)為什么?

兩個(gè)線程依次按序打印從1到100,一個(gè)只打印奇數(shù),另一個(gè)只打印偶數(shù)。public class Test16 implements Runnable{private int turn;private int num;private int sum;static Integer counter=0;public Test16(int turn,int num,int sum){this.turn=turn;this.num=num;this.sum=sum;}public  synchronized void run() {while(counter<sum){while(turn!=counter%num){try {wait();} catch (InterruptedException e) {e.printStackTrace();}}counter++;System.out.print(counter+" ");notifyAll();}}public static void main(String[] args){new Thread(new Test16(0,2,100)).start();new Thread(new Test16(1,2,100)).start();}}
查看完整描述

3 回答

?
慕虎7371278

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超4個(gè)贊

問(wèn)題在public  synchronized void run() {  相當(dāng)于 synchronized(this),而 main中
new Thread(new Test16(0,2,100)).start();
new Thread(new Test16(1,2,100)).start();
這樣是2個(gè)不同的test16對(duì)象,因而是2個(gè)不同的鎖,2個(gè)鎖都在等待自己的資源(2個(gè)線程都停止了),所以不可能被喚醒。其實(shí)樓主想鎖定的是共享的counter,counter的是static的,屬于類對(duì)象,所以要在類上加鎖才行。
代碼修改如下:

  1. public void run() {  

  2.         synchronized (Test16.class) {  

  3.             while (counter < sum) {  

  4.                 while (turn != counter % num) {  

  5.                     try {  

  6.                         Test16.class.wait();  

  7.                     } catch (InterruptedException e) {  

  8.                         e.printStackTrace();  

  9.                     }  

  10.                 }  

  11.   

  12.                 counter++;  

  13.                 System.out.println(counter + "   turn : " + turn);  

  14.                 Test16.class.notifyAll();  

  15.   

  16.             }  

  17.         }  

  18.   

  19.     }  


查看完整回答
反對(duì) 回復(fù) 2022-10-06
?
慕慕森

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超17個(gè)贊

樓主,根本原因是你這里用了兩個(gè)不同的對(duì)象,是不會(huì)實(shí)現(xiàn)互斥效果的

引用

new Thread(new Test16(0,2,100)).start();
new Thread(new Test16(1,2,100)).start();

這里兩個(gè)Test16的對(duì)象,每個(gè)對(duì)象都可以進(jìn)入你synchronized 的run方法。
這了互斥可以用類似生產(chǎn)者消費(fèi)者李模式這種概念,或者直接使用阻塞隊(duì)列,開(kāi)始時(shí)隊(duì)列只存放一個(gè)1,兩個(gè)線程輪流每次在隊(duì)列里取,取到消費(fèi)后,將加1的結(jié)果再放入隊(duì)列,此時(shí)notifyAll,另一個(gè)線程就可以取到數(shù)據(jù)。當(dāng)前線程就會(huì)阻塞,以此可以實(shí)現(xiàn)你要的效果。


查看完整回答
反對(duì) 回復(fù) 2022-10-06
?
波斯汪

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超4個(gè)贊

while(turn!=counter%num){
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

turn不等于的時(shí)候,然后就wait,
線程調(diào)用了wait,就會(huì)進(jìn)入休眠狀態(tài)并且釋放鎖,直到其他線程調(diào)用相同對(duì)象的notify或者notifyAll,這個(gè)線程才會(huì)(notify的話只是有可能會(huì))重新進(jìn)入執(zhí)行隊(duì)列。當(dāng)這個(gè)線程開(kāi)始執(zhí)行的時(shí)候它會(huì)再次接管鎖并執(zhí)行wait后面的內(nèi)容(接管鎖這個(gè)動(dòng)作會(huì)等待鎖被其他線程釋放)。

查看完整回答
反對(duì) 回復(fù) 2022-10-06
  • 3 回答
  • 0 關(guān)注
  • 140 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)