由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++多线程的选择
相关主题
java比js难多了在 windows下的C++开发平台是不是 Dev-C++?
有谁知道怎么把matlab和VC联接着一起用? (转载)多线程的程序设计有什么好书推荐? (转载)
弱问mcc和mex的区别怎么练习multi-threading,平常工作都是用Java框架
容器里边放指针怎么办?看到python的multiprocessing心中一痛
pthread on windows?多线程编程前景如何?
关于C++ STL编译的疑问请教如何自己C++编程牛逼些
多线程 编程,process 和 thread 的一些问题。C++ templates
关于 gcc 和 g++ 的问题用C++的写的numerical or optimization solver library
相关话题的讨论汇总
话题: c++话题: 0x话题: 多线程话题: stl话题: pthread
进入Programming版参与讨论
1 (共1页)
f******y
发帖数: 2971
1
C++里面多线程的库有好几个:
(1) pthread
(2) boost, 这个其实是pthread的wrapper
(3) tbb
(4) c++0x 也支持一些基本的多线程编程
我现在正在想该学哪一个,个人觉得tbb的功能最强大,c++0x的好处是它是包含在stl
里的,
compiler的支持应该比较好。
各位老手能指点一下这几个库哪个比较好吗?
t****t
发帖数: 6806
2
i assume you are talking about unix -- in that case, c++0x is usually
another wrapper of pthread. in fact, STL in c++0x is (more or less) a port
of boost.

stl

【在 f******y 的大作中提到】
: C++里面多线程的库有好几个:
: (1) pthread
: (2) boost, 这个其实是pthread的wrapper
: (3) tbb
: (4) c++0x 也支持一些基本的多线程编程
: 我现在正在想该学哪一个,个人觉得tbb的功能最强大,c++0x的好处是它是包含在stl
: 里的,
: compiler的支持应该比较好。
: 各位老手能指点一下这几个库哪个比较好吗?

J*****n
发帖数: 4859
3
c++0x is standard now.
h********n
发帖数: 1671
4
gcc里的c++0x什么时候才能搞好?现在还有不少没实现的feature。
f******y
发帖数: 2971
5
这个慢慢等就行了,c++0x也没正式公布呢。

【在 h********n 的大作中提到】
: gcc里的c++0x什么时候才能搞好?现在还有不少没实现的feature。
j*******d
发帖数: 8834
6
还有non-premptive, 比如state thread

stl

【在 f******y 的大作中提到】
: C++里面多线程的库有好几个:
: (1) pthread
: (2) boost, 这个其实是pthread的wrapper
: (3) tbb
: (4) c++0x 也支持一些基本的多线程编程
: 我现在正在想该学哪一个,个人觉得tbb的功能最强大,c++0x的好处是它是包含在stl
: 里的,
: compiler的支持应该比较好。
: 各位老手能指点一下这几个库哪个比较好吗?

1 (共1页)
进入Programming版参与讨论
相关主题
用C++的写的numerical or optimization solver librarypthread on windows?
How to compile with ddd?关于C++ STL编译的疑问
[合集] 编程的习惯问题多线程 编程,process 和 thread 的一些问题。
const_reverse_iterator和reverse_iterator有什么区别? (转载)关于 gcc 和 g++ 的问题
java比js难多了在 windows下的C++开发平台是不是 Dev-C++?
有谁知道怎么把matlab和VC联接着一起用? (转载)多线程的程序设计有什么好书推荐? (转载)
弱问mcc和mex的区别怎么练习multi-threading,平常工作都是用Java框架
容器里边放指针怎么办?看到python的multiprocessing心中一痛
相关话题的讨论汇总
话题: c++话题: 0x话题: 多线程话题: stl话题: pthread