c++筆記3

1,多線程概論    2,std::ref()將值轉爲引用,std::cref()將值轉爲常引用 第一種:不推薦    int ca = 5;      int& cca = ca;     thread ttt(testC, std::ref(ca));//可以   //thread ttt(testC, cca);//不可以 第二種:推薦 thread ttt([&] {testC(ca);
相關文章
相關標籤/搜索