小编hys*_*ria的帖子

c ++ 11 Thread类如何使用类成员函数

我的程序如下所示

#include <iostream>
#include <thread>

class A {
public:
    void foo(int n ) { std::cout << n << std::endl; }
};

int main()
{
    A a;

    std::thread t1(&A::foo, std::ref(a), 100);

    t1.join();
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

当我使用以下命令编译它时,我得到错误

g++ -o main main.cc -lpthread -std=c++11
Run Code Online (Sandbox Code Playgroud)

错误:

In file included from /usr/local/include/c++/4.8.2/thread:39:0,
                  from check.cc:2:
/usr/local/include/c++/4.8.2/functional: In instantiation of ‘struct std::_Bind_simple<std::_Mem_fn<void (A::*)(int)>(std::reference_wrapper<A>, int)>’:
/usr/local/include/c++/4.8.2/thread:137:47:   required from ‘std::thread::thread(_Callable&&, _Args&& ...) [with _Callable = void (A::*)(int); _Args = {std::reference_wrapper<A>, int}]’
check.cc:13:42:   required from here
/usr/local/include/c++/4.8.2/functional:1697:61: error?no type named …
Run Code Online (Sandbox Code Playgroud)

c++ c++11

19
推荐指数
4
解决办法
2万
查看次数

标签 统计

c++ ×1

c++11 ×1