91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中ThreadPool之QueueUserWorkItem怎么用

發布時間:2021-08-30 09:37:57 來源:億速云 閱讀:289 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關C#中ThreadPool之QueueUserWorkItem怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

先看代碼:

//設置可以同時處于活動狀態的線程池的請求數目。 
bool pool = ThreadPool.SetMaxThreads(8, 8);
if (pool) {
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數1"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數2"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數3"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數4"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數5"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數6"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數7"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數8"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數9"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數10"));
    ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數11"));
};

上面代碼先設置線程池中最大并發量為8個,然后通過QueueUserWorkItem向線程池中添加11個方法,運行,輸出結果:

C#中ThreadPool之QueueUserWorkItem怎么用

可以看出,先運行了8個,當有一個任務結束后線程池中有空閑線程時,排隊的下一個任務才會執行,

把最大并發量改成9試試:

{
    //設置可以同時處于活動狀態的線程池的請求數目。 
    bool pool = ThreadPool.SetMaxThreads(9, 9);
    if (pool) {
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數1"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數2"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數3"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數4"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數5"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數6"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數7"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數8"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數9"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數10"));
        ThreadPool.QueueUserWorkItem(o => this.DoSomethingLong("參數11"));
    };
}

運行結果:

C#中ThreadPool之QueueUserWorkItem怎么用

感謝各位的閱讀!關于“C#中ThreadPool之QueueUserWorkItem怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南投市| 林周县| 建昌县| 乡城县| 友谊县| 吉林市| 玉溪市| 灵宝市| 兰溪市| 武安市| 西峡县| 麻阳| 广水市| 辉南县| 个旧市| 竹溪县| 辽宁省| 芜湖市| 阳西县| 长寿区| 尼木县| 大关县| 永善县| 安多县| 阿图什市| 酉阳| 宁河县| 长治市| 囊谦县| 阳新县| 红安县| 淮安市| 家居| 锦屏县| 赤壁市| 伊金霍洛旗| 都匀市| 泰州市| 平罗县| 益阳市| 弥勒县|