91精产品自偷自偷综合官网版下载-91精产品自偷自偷综合下-91精品-91精品91久久久-91精品成人-91精品成人www

網(wǎng)站建設(shè)資訊

NEWS

網(wǎng)站建設(shè)資訊

C++11并發(fā)編程:多線程std::thread

一:概述

創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)、鎮(zhèn)平網(wǎng)絡(luò)推廣、微信小程序、鎮(zhèn)平網(wǎng)絡(luò)營(yíng)銷、鎮(zhèn)平企業(yè)策劃、鎮(zhèn)平品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供鎮(zhèn)平建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com

C++11引入了thread類,大大降低了多線程使用的復(fù)雜度,原先使用多線程只能用系統(tǒng)的API,無(wú)法解決跨平臺(tái)問(wèn)題,一套代碼平臺(tái)移植,對(duì)應(yīng)多線程代碼也必須要修改。現(xiàn)在在C++11中只需使用語(yǔ)言層面的thread可以解決這個(gè)問(wèn)題。

所需頭文件

二:構(gòu)造函數(shù)

1.默認(rèn)構(gòu)造函數(shù)

  • thread() noexcept
  • 一個(gè)空的std::thread執(zhí)行對(duì)象

2.初始化構(gòu)造函數(shù)

template

explicit thread(Fn&& fn, Args&&... args);

創(chuàng)建std::thread執(zhí)行對(duì)象,線程調(diào)用threadFun函數(shù),函數(shù)參數(shù)為args。

void threadFun(int a)
{
  cout << "this is thread fun !" << endl;
}
thread t1(threadFun, 2);

3.拷貝構(gòu)造函數(shù)

thread(const thread&) = delete;

拷貝構(gòu)造函數(shù)被禁用,std::thread對(duì)象不可拷貝構(gòu)造

void threadFun(int& a)
{
  cout << "this is thread fun !" << endl;
}  
int value = 2;
thread t1(threadFun, std::ref(value));

4.Move構(gòu)造函數(shù)

thread(thread&& x)noexcept

調(diào)用成功原來(lái)x不再是std::thread對(duì)象

void threadFun(int& a)
{
  cout << "this is thread fun !" << endl;
} 
int value = 2;
thread t1(threadFun, std::ref(value));
thread t2(std::move(t1));
t2.join();

三:成員函數(shù)

1.get_id()

獲取線程ID,返回類型std::thread::id對(duì)象。

thread t1(threadFun);
thread::id threadId = t1.get_id();
cout << "線程ID:" << threadId << endl;
//threadId轉(zhuǎn)換成整形值,所需頭文件
ostringstream  oss;
oss << t1.get_id();
string strId = oss.str();
unsigned long long tid = stoull(strId);
cout << "線程ID:" << tid << endl;

2.join()

創(chuàng)建線程執(zhí)行線程函數(shù),調(diào)用該函數(shù)會(huì)阻塞當(dāng)前線程,直到線程執(zhí)行完join才返回。

thread t1(threadFun);
t1.join() //阻塞等待

3.detach()

detach調(diào)用之后,目標(biāo)線程就成為了守護(hù)線程,駐留后臺(tái)運(yùn)行,與之關(guān)聯(lián)的std::thread對(duì)象失去對(duì)目標(biāo)線程的關(guān)聯(lián),無(wú)法再通過(guò)std::thread對(duì)象取得該線程的控制權(quán)。

4.swap()

交換兩個(gè)線程對(duì)象

thread t1(threadFun1);
thread t2(threadFun2);
cout << "線程1的ID:" << t1.get_id() << endl;
cout << "線程2的ID:" << t2.get_id() << endl;
t1.swap(t2);
cout << "線程1的ID:" << t1.get_id() << endl;
cout << "線程2的ID:" << t2.get_id() << endl;

5.hardware_concurrency()

獲得邏輯處理器儲(chǔ)量,返回值為int型

int coreNum = thread::hardware_concurrency();

四:使用

1.創(chuàng)建線程

void threadFun1()
{
  cout << "this is thread fun1 !" << endl;
}
int main()
{
  thread t1(threadFun1);
  t1.join();
  getchar();
  return 1;
}

2.創(chuàng)建線程,傳參

void threadFun1(int v)
{
  cout << "this is thread fun1 !" << endl;
  cout << v << endl;
}
int main()
{
  int value = 6;
  thread t1(threadFun1, value);
  t1.join();
  getchar();
  return 1;
}

需要注意,變量int value 和int v 做變量傳遞時(shí)并不是引用,而是對(duì)變量做了拷貝,所以在傳遞給int v前,int value不能出作用域(釋放了內(nèi)存),join(),可以保證int value變量釋放內(nèi)存,如果使用detach(),可能存在這種情況。

3.創(chuàng)建線程,引用傳參

void threadFun1(int& v)
{
  cout << "this is thread fun1 !" << endl;
  cout << v << endl;
}
int main()
{
  int value = 6;
  thread t1(threadFun1, std::ref(value));
  t1.join();
  getchar();
  return 1;
}

4.創(chuàng)建建線程,線程函數(shù)為類成員函數(shù)

class Object
{
public:
  Object()
  {
    cout << "構(gòu)造函數(shù)" << endl;
  }
  ~Object()
  {
    cout << "析構(gòu)函數(shù)" << endl;
  }
  void fun(string info)
  {
    cout << info << endl;
  }
};
int main()
{
  Object obj;
  string str = "我是一個(gè)類的成員函數(shù)!";
  thread t1(&Object::fun, &obj, str);
  t1.join();
  getchar();
  return 1;
}

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)創(chuàng)新互聯(lián)的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接


分享題目:C++11并發(fā)編程:多線程std::thread
文章位置:http://www.yuzhuanjia.cn/article/pgeiee.html
主站蜘蛛池模板: 国产 欧美 日产 | 久久久九九 | av国片精品有毛 | 午夜欧美不卡精品aaaaa | 99精品国产福利一区二区 | 99久久国产自偷自自偷蜜月 | a级片免费在线播放 | free性欧美1819| 91无码人妻一区二区三区在线看 | 高清国产精品人妻一区二区 | 91网站免费看国 | 一区二区国产美女主播在线播放 | 午夜国产成人精品日本亚洲专 | 91无套极品外围在线播放 | 9i在线观看免费视频精华液 | 午夜在线视频国产极品片 | 国产av日韩一区二区三区精品 | 丰满的岳乱一区二区 | 91精品久久久久久久久久小网站 | 午夜福利电影在线 | 操亚洲美女 | 成人自拍视 | 91视频电影 | 国产爆乳美女精品视频网站 | 波多野结无码高清中文 | 大奶肥臀| 97在线视频人妻无码男人三区免费在线播放天堂97久久 | 午夜国产一区二区三区在线观看 | 3d成人动漫在线观看 | 91久久精品国 | 91在线精品一区二区大受欢迎 | 99re热精品视频国产免费 | 果冻传媒+麻豆+ | 91久久夜色精 | 一区二区三区免费 | 福利在线观看 | 波多野结衣dvd在线播放 | 午夜理论片 | 午夜福利理论片高清在线 | 动漫处女自慰日韩一区二区 | 91精品国产热久久福利 |