boost有幾種執行緒建立方式,現總結如下:
首先看看boost::thread的建構函式吧,boost::thread有兩個建構函式:
(1)thread():構造乙個表示當前執行執行緒的執行緒物件;
(2)explicit thread(const boost::function0& threadfunc):
boost::function0可以簡單看為:乙個無返回(返回void),無引數的函式。這裡的函式也可以是類過載operator()構成的函式;該建構函式傳入的是函式物件而並非是函式指標,這樣乙個具有一般函式特性的類也能作為引數傳入,在下面有例子。
第一種方式:最簡單方法
#include
#include
void hello()
int main(int argc, char* argv)
第二種方式:複雜型別物件作為引數來建立執行緒:
#include
#include
#include
boost::mutex io_mutex;
struct count
void operator()() }
int id;
}; int main(int argc, char* argv)
第三種方式:在類內部建立執行緒;
(1)類內部靜態方法啟動執行緒
#include
#include
class helloworld
static void start()
}; int main(int argc, char* argv)
在這裡start()和hello()方法都必須是static方法。
(2)如果要求start()和hello()方法不能是靜態方法則採用下面的方法建立執行緒:
#include
#include
#include
class helloworld
void start()
}; int main(int argc, char* argv)
(3)在singleton模式內部建立執行緒:
#include
#include
#include
class helloworld
static void start()
static helloworld& getinstance()
private:
helloworld(){}
static helloworld* instance;
}; helloworld* helloworld::instance = 0;
int main(int argc, char* argv)
第四種方法:用類內部函式在類外部建立執行緒;
#include
#include
#include
#include
class helloworld
}; int main(int argc, char* argv)
如果執行緒需要繫結的函式有引數則需要使用boost::bind。比如想使用 boost::thread建立乙個執行緒來執行函式:void f(int i),如果這樣寫:boost::thread thrd(f)是不對的,因為thread建構函式宣告接受的是乙個沒有引數且返回型別為void的型別,而且不提供引數i的值f也無法執行,這時就可以寫:boost::thread thrd(boost::bind(f,1))。涉及到有參函式的繫結問題基本上都是boost::thread、boost::function、boost::bind結合起來使用。
boost多執行緒
linux下編譯多執行緒程式 g o 1.out 1.cpp i boost include l boost lib lboost thread 建立執行緒 標頭檔案 namespace boost thread 構造乙個表示當前執行執行緒的執行緒物件 explicit thread const b...
Boost之多執行緒
c 標準庫沒有涉及執行緒,在c 中,雖然不可能寫出標準相容的多執行緒程式,程式設計師可以使用特定作業系統提供的執行緒庫來寫出多執行緒程式來。可是,這至 少導致兩個突出的問題 作業系統普遍提供的是c庫,在c 中使用要更小心,每個作業系統都有自己的一套支援多執行緒的庫 另外,不標準,不可移植。boost...
boost庫 多執行緒
1.執行緒管理 最重要的乙個類是boost thread,是在boost thread.hpp裡定義的,用來建立乙個新執行緒。include include void wait int seconds void thread int main 乙個特定的執行緒可以通過thread變數訪問,通過這個變...