並發編程: c++11 thread(Func, Args...)利用類成員函數建立線程

來源:互聯網
上載者:User

標籤:

c++11是VS2012後支援的新標準,為並發編程提供了方便的std::thread。

使用樣本:

#include <thread>void thread_func(int arg1, int arg2, float* arg3){    arg3 = (arg1*1.0)/(arg1 + arg2);    cout << "arg1 / (arg1 + arg2) = " << arg3 << endl;    return;}void main(){    //線程數    int threadNum = 3    //動態分配    thread* t;    t = new thread[threadNum];    //結果    float *result =  (float *)malloc(threadNum*sizeof(float));        for ( int i = 0; i < threadNum; i++){        t[i] = thread(thread_func, i, i, &result[i]);        }    for ( int i = 0; i < threadNum; i++){        //t[i].detach(); //主進程不等子進程運行完        t[i].join();        //主進程等    }    //post-processing towards result...}

當需要利用類成員函數( MyClass::thread_func )來建立子線程時,需如下碼碼:

t[i] = thread(std::mem_fn(&MyClass::thread_func), Object, args..);    

如果thread_func為static,則不用寫object。否則需要,如主進程所調函數也為該類成員,則傳入this指回自己。

並發編程: c++11 thread(Func, Args...)利用類成員函數建立線程

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.