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

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

使用 BlockingQueue<Runnable> 作為參數(shù)的構(gòu)造函數(shù)創(chuàng)建的

使用 BlockingQueue<Runnable> 作為參數(shù)的構(gòu)造函數(shù)創(chuàng)建的

拉丁的傳說 2022-07-27 20:33:12
for 的構(gòu)造函數(shù)具有asThreadPoolExecutor的類型參數(shù)。 假設(shè)我有一個(gè)這樣的聲明BlockingQueueRunnableThreadPoolExecutorThreadPoolExecutor customThreadPool = new ThreadPoolExecutor(numberOfAvailableProcessors,                                numberOfAvailableProcessors, 2L,                                TimeUnit.MILLISECONDS,                                new LinkedBlockingQueue<>(),                                Executors.defaultThreadFactory(),                                new RejectedExecutionHandler() {                                    @Override                                    public void rejectedExecution(Runnable r, ThreadPoolExecutor threadPoolExecutor) {                                        // Do something here to handle it                                    }                                });  我的問題是什么時(shí)候做類似的事情:customThreadPool.submit(new Callable<Integer>() {                @Override                public Integer call() throws Exception {                    return Math.toIntExact(Thread.currentThread().getId());                }            })  ThreadPool即使我指定了 to 的類型參數(shù),如何處理Queue這個(gè)問題Runnable?這個(gè)任務(wù)將如何排隊(duì)?
查看完整描述

1 回答

?
鴻蒙傳說

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

那是因?yàn)樗鼘⒛?code>Callable任務(wù)包裝為RunnableFuture在排隊(duì)或執(zhí)行之前。

RunnableFuture實(shí)現(xiàn)Runnable了接口(除了Future)。

因此,所有可調(diào)用對(duì)象都可以毫無問題地排隊(duì)和執(zhí)行。

查看AbstractExecutorService源以獲取更多信息。


查看完整回答
反對(duì) 回復(fù) 2022-07-27
  • 1 回答
  • 0 關(guān)注
  • 138 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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