バインドでディスパッチ テーブルを実装する過程で、マクロを関数テンプレートに置き換えようとしています。
std::string
またはを返すためのテーブルを追加し始めたら、テンプレート バージョンを強く好みdouble
ます。
マクロ バージョンは問題なく動作しますが、テンプレート バージョンではコア ダンプが発生します。
誰かが私が間違っていることを説明できますか? ありがとうございました。
コード
#include <functional>
#include <iostream>
#include <map>
struct Integer
{
virtual int getInt() const = 0;
};
struct IntImpl : public Integer
{
virtual int getInt() const { return 42; }
};
typedef std::function<int()> IntFunction;
typedef std::function<IntFunction( Integer const& inst )> IntLambda;
#define USE_MACRO
#ifdef USE_MACRO
#define MP(A,B) \
std::make_pair( A, []( Integer const& inst ) { \
return std::bind( B, std::cref( inst )); \
} )
#else
template<typename L,typename T,typename M>
std::pair<std::string,L>
MP( std::string const& str, M method)
{
return std::make_pair( str, [&method]( T const& inst ) {
return std::bind( method, std::cref( inst ));
}
);
}
#endif
static std::map<std::string,IntLambda> const g_intTbl =
{
#ifdef USE_MACRO
MP( "getInt", &Integer::getInt )
#else
MP<IntLambda,Integer>( "getInt", &Integer::getInt )
#endif
};
int
main( int argv, char* argc[] )
{
IntImpl x;
std::cerr << g_intTbl.find("getInt")->second( x )() << std::endl;
}