3

以下の 20 行目の最初のコード スニペットに示すように、スレッド コンストラクターへのパラメーターとしてクラスのメンバー関数を受け入れる方法で C++11 スレッドを実験しようとしています。クラス定義は、2 番目のコード スニペットに示されています。このコードをコンパイルすると、3 番目のスニペットに示されている一連のエラーが表示されます。誰が私が間違っているのか教えてもらえますか? ありがとう。

スニペット 1: スレッドの初期化 (main_app.cpp)

#include <thread>
#include "ServiceRegistrar.hpp"

#define SERVER_TYPE  100065
#define SERVER_INST_LOWER  1
#define SERVER_INST_UPPER  2
#define TIMEOUT  500000

int main()
{
  ServiceRegistrar sr1(SERVER_TYPE, TIMEOUT, SERVER_INST_LOWER, SERVER_INST_LOWER);
      /*LINE 20 is the following*/
  std::thread t(&ServiceRegistrar::subscribe2TopologyServer, sr1);
t.join();
  sr1.publishForSRs();

}

スニペット 2: クラス定義

class ServiceRegistrar
{
  public:
    ServiceRegistrar(int serverType, int serverTimeOut, int serverInstanceLower, int serverInstanceUpper)
       : mServerType(serverType),
         mServerTimeOut(serverTimeOut),
         mServerInstanceLower(serverInstanceLower),
         mServerInstanceUpper(serverInstanceUpper)
         { }

     void subscribe2TopologyServer();
     void publishForSRs();
     void publishForServices();

  private:
     int mServerType;
     int mServerTimeOut;
     int mServerInstanceLower;
         int mServerInstanceUpper;           
  };

スニペット 3: コンパイル出力

  $ g++ -g -c -Wall -std=c++11 main_app.cpp -pthread
  In file included from /usr/include/c++/4.7/ratio:38:0,
             from /usr/include/c++/4.7/chrono:38,
             from /usr/include/c++/4.7/thread:38,
             from main_app.cpp:8:
  /usr/include/c++/4.7/type_traits: In instantiation of ‘struct    std::_Result_of_impl<false, false, std::_Mem_fn<void (ServiceRegistrar::*)()>,    ServiceRegistrar>’:
  /usr/include/c++/4.7/type_traits:1857:12:   required from ‘class std::result_of<std::_Mem_fn<void (ServiceRegistrar::*)()>(ServiceRegistrar)>’
  /usr/include/c++/4.7/functional:1563:61:   required from ‘struct std::_Bind_simple<std::_Mem_fn<void (ServiceRegistrar::*)()>(ServiceRegistrar)>’
 /usr/include/c++/4.7/thread:133:9:   required from ‘std::thread::thread(_Callable&&,  _Args&& ...) [with _Callable = void (ServiceRegistrar::*)(); _Args = {ServiceRegistrar&}]’
 main_app.cpp:20:64:   required from here
/usr/include/c++/4.7/type_traits:1834:9: error: no match for call to     ‘ (std::_Mem_fn<void (ServiceRegistrar::*)()>) (ServiceRegistrar)’
4

2 に答える 2

4

どうやらそれはgcc 4.7のバグです...使用

std::thread t(&ServiceRegistrar::subscribe2TopologyServer, &sr1);

代わりは。

sr1編集:実際には、おそらくのスレッドローカルストレージにコピーしたくないtので、とにかくこれが優れています。

于 2013-02-28T18:40:03.843 に答える
0

試す:

std::thread t(std::bind(&ServiceRegistrar::subscribe2TopologyServer, sr1));

それが役に立てば幸い。

于 2013-02-28T18:41:41.137 に答える