程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> c++ 11 thread 初試

c++ 11 thread 初試

編輯:C++入門知識

c++ 11 thread 初試


最新的 c++11標准整合進了 線程支持,下面寫一個小程序測試一下。

測試代碼:

 

#include 
#include 

void hello(void)
{
	std::cout << Hello concurrent world << std::endl;
}

int main(void)
{
	std::thread t(hello);
	t.join();
}

編譯方法:

 

 

g++ -std=c++11  thread1.cpp   -pthread  -g -o thread

可見,還是需要 pthreads庫支持。。

 

在 hello()加個斷點,看一下此時的調用棧:

 

#0  hello () at thread1.cpp:6
#1  0x08049b27 in std::_Bind_simple::_M_invoke<>(std::_Index_tuple<>) (this=0x804e024) at /usr/include/c++/4.8/functional:1732
#2  0x08049aad in std::_Bind_simple::operator()() (
    this=0x804e024) at /usr/include/c++/4.8/functional:1720
#3  0x08049a62 in std::thread::_Impl >::_M_run() (this=0x804e018) at /usr/include/c++/4.8/thread:115
#4  0xb7f76d1e in ?? () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#5  0xb7e9ff70 in start_thread (arg=0xb7ca1b40) at pthread_create.c:312
#6  0xb7dd6bee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129

 

可以看到, gcc 4.8裡面, c++11的線程基本上是對 pthreads的封裝。

我使用的 gcc版本是 4.8.2

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved