为了账号安全,请及时绑定邮箱和手机立即绑定

想问一下,怎样在自定义类中的函数使用thread?

想问一下,怎样在自定义类中的函数使用thread?

蝴蝶不菲 2022-07-15 13:09:44
#include <iostream>#include <thread>using namespace std;class test{public:void output(const int a){cout << a << endl;}void work(const int a){thread th(output,a);th.join();}};int main(){test t;t.work(10);/******or/thread th(t.work,10);/th.join();*******/return 0;}写个程序试一下,想在自定义的类的函数中使用thread或者把自定义的类的函数作为thread的驱动函数,但是上面两种写法都不行。/******or/thread th(t.output,10);/th.join();*******/注释里面应该是这样
查看完整描述

2 回答

?
BIG阳

TA贡献1859条经验 获得超6个赞

另一种是把 output 声明为静态成员函数


class test{public:    static void output(const int a)    {        cout << a << endl;    }    void work(const int a)    {        thread th(output,a);        th.join();    }};


查看完整回答
反对 回复 2022-07-18
?
狐的传说

TA贡献1804条经验 获得超3个赞

thread th( &test::output, this, a);

查看完整回答
反对 回复 2022-07-18
  • 2 回答
  • 0 关注
  • 108 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信