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

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

如何讓 AtomicInteger 在 Runnable 類中工作

如何讓 AtomicInteger 在 Runnable 類中工作

楊魅力 2023-10-27 10:47:42
我用 Java 編寫了這段代碼Runnable,但我的教授希望我添加AtomicInteger,以便不存在線程干擾。我該如何去做呢?我嘗試查找如何在代碼中使用它的示例,但我不知道在這種情況下該怎么做。public class GarageWorker {    public static void main(String[] args) {        System.out.println("We are going to count the vehicles in the garage");        System.out.println();        System.out.println("There are 50 vehicles in the garage to start with!");        System.out.println();        GarageWorker garage = new GarageWorker(50);        Runnable vehicleEnter = garage.new Enter();        Runnable vehicleExit = garage.new Exit();        Thread thread1 = new Thread(vehicleEnter);        Thread thread2 = new Thread(vehicleExit);        thread1.start();        thread2.start();    }    public GarageWorker(int initialCarCount) {        counter = initialCarCount;    }    public int counter;    public class Enter implements Runnable {        public Enter() {        }        public int increaseVehicleCount() {            return ++counter;        }        public void run() {            while (counter < 100) {                System.out.println("One vehicle entered the garage now there are " + increaseVehicleCount());            }        }    }    public class Exit implements Runnable {        public Exit() {        }        public int decreaseVehicleCount() {            return --counter;        }        public void run() {            while (counter > 0) {                System.out.println("One vehicle left the garage now there are " + decreaseVehicleCount());            }        }    }}代碼運(yùn)行良好,但我的教授希望我將AtomicInteger類實(shí)現(xiàn)到代碼中。
查看完整描述

1 回答

?
交互式愛情

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

我猜你的教授希望你counter改成AtomicInteger.?首先,您需要導(dǎo)入AtomicInteger并更改構(gòu)造函數(shù)的聲明counter以反映這一點(diǎn)。

import java.util.concurrent.atomic.AtomicInteger;

public GarageWorker(int initialCarCount) {

? ? counter = new AtomicInteger(initialCarCount);

}


public AtomicInteger counter;

另外,您想要更改increaseVehicleCount和decreaseVehicleCount方法以便使用AtomicInteger代替int。


public int increaseVehicleCount() {

? ? return counter.incrementAndGet();

}

public int decreaseVehicleCount() {

? ? return counter.decrementAndGet();

}

incrementAndGet以及正如decrementAndGet他們所說:它們遞增(或遞減)并隨后返回新值。



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

添加回答

舉報(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)