由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++一个类中多个thread的问题
相关主题
some C++ interview questions一道c++的考古题
C++中如何引用模板类中的模板函数c++下如何实现多线程?
a c++ questionC++: protect dtor
Help! Virtual Destructor请问关于c++实现singleton的问题?
C++问题,confusing...含泪流血裸奔完整代码回答C++弱问题
一个C++的问题C++ 书推荐
多线程编程前景如何?急问:compile and build dependency
one question about operator deletefind bugs of c++ codes
相关话题的讨论汇总
话题: thread话题: function话题: c++话题: object话题: member
进入Programming版参与讨论
1 (共1页)
s****l
发帖数: 137
1
我想把一个class里的几个member function分别作为单独的thread运行,有没有办法?
现有的方法好像要求把member function包装成C function,这样只能在C function中
create object,无法实现一个类管理多个thread了。是不是只能用C了? thanks.
p*u
发帖数: 2454
2
那你的ctor和dtor在哪个thread里?

【在 s****l 的大作中提到】
: 我想把一个class里的几个member function分别作为单独的thread运行,有没有办法?
: 现有的方法好像要求把member function包装成C function,这样只能在C function中
: create object,无法实现一个类管理多个thread了。是不是只能用C了? thanks.

s****l
发帖数: 137
3
the object is constructed in main(). then I want to run multiple threads
within
the object. Is it possible or my model is wrong? thanks.

【在 p*u 的大作中提到】
: 那你的ctor和dtor在哪个thread里?
p*u
发帖数: 2454
4
http://www.parashift.com/c++-faq-lite/pointers-to-members.html#faq-33.2
貌似还是extern C比较好。

【在 s****l 的大作中提到】
: the object is constructed in main(). then I want to run multiple threads
: within
: the object. Is it possible or my model is wrong? thanks.

s****l
发帖数: 137
5
thanks a lot for the info!

【在 p*u 的大作中提到】
: http://www.parashift.com/c++-faq-lite/pointers-to-members.html#faq-33.2
: 貌似还是extern C比较好。

s*******d
发帖数: 59
6
delegate 真是c++的一个痛处.
k****z
发帖数: 550
7
sounds like you should use static member function?
not sure...

【在 s****l 的大作中提到】
: the object is constructed in main(). then I want to run multiple threads
: within
: the object. Is it possible or my model is wrong? thanks.

1 (共1页)
进入Programming版参与讨论
相关主题
find bugs of c++ codesC++问题,confusing...
老调重弹 virtual destructor一个C++的问题
没有经过构造函数???多线程编程前景如何?
heap 和 stack问题one question about operator delete
some C++ interview questions一道c++的考古题
C++中如何引用模板类中的模板函数c++下如何实现多线程?
a c++ questionC++: protect dtor
Help! Virtual Destructor请问关于c++实现singleton的问题?
相关话题的讨论汇总
话题: thread话题: function话题: c++话题: object话题: member