由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - boost::thread弱文
相关主题
thread c++ 问题pthread on windows?
请教boost::any compile错误。问个multiple core的问题
c++ thread 求助effective C++里的memory pool 一问:
请教multi-threading工具 (转载)why do we still use dynamic allocation?
关于thread的stack真正的multi-threading是5个thread要5个cpu?那apache是真正的m
boost drives me crazy!! Question!为什么用try catch不住exception?
C++ 的 exception handling关于内存泄漏
gdb with big core filemulti threading 还是 multi processing
相关话题的讨论汇总
话题: boost话题: thread话题: mythread1话题: 弱文话题: std
进入Programming版参与讨论
1 (共1页)
N***m
发帖数: 4460
1
刚接触boost thread,遇到一个小问题。
为什么这样可以:
std::vector v;
boost::thread* mythread1=new boost::thread(f1);
v.push_back(mythread1);
而这样不可以(或者哪里写错了?)
std::vector v;
boost::thread mythread1(f1);
v.push_back(mythread1);
错误提示很长,似乎有什么allocator不对
Q**g
发帖数: 183
2
boost::thread is not copy constructible nor assinable

【在 N***m 的大作中提到】
: 刚接触boost thread,遇到一个小问题。
: 为什么这样可以:
: std::vector v;
: boost::thread* mythread1=new boost::thread(f1);
: v.push_back(mythread1);
: 而这样不可以(或者哪里写错了?)
: std::vector v;
: boost::thread mythread1(f1);
: v.push_back(mythread1);
: 错误提示很长,似乎有什么allocator不对

N***m
发帖数: 4460
3
3x!
Is there any simple reason for not allowing copy ctor and assignment?

【在 Q**g 的大作中提到】
: boost::thread is not copy constructible nor assinable
N***m
发帖数: 4460
4
I guess I know why le. so forget about it.
刚接触multithread,问的问题有点傻啊,呵呵

【在 N***m 的大作中提到】
: 3x!
: Is there any simple reason for not allowing copy ctor and assignment?

1 (共1页)
进入Programming版参与讨论
相关主题
multi threading 还是 multi processing关于thread的stack
thread, semaphore, 问题。boost drives me crazy!! Question!
python下的expectC++ 的 exception handling
alloc这个函数究竟做些啥活呢?gdb with big core file
thread c++ 问题pthread on windows?
请教boost::any compile错误。问个multiple core的问题
c++ thread 求助effective C++里的memory pool 一问:
请教multi-threading工具 (转载)why do we still use dynamic allocation?
相关话题的讨论汇总
话题: boost话题: thread话题: mythread1话题: 弱文话题: std