このようなことをする方法はありますか(MS VS 2008)?l-値オブジェクトとしてのboost :: bind
boost::bind mybinder = boost::bind(/*something is binded here*/);
mybinder(/*parameters here*/); // <--- first call
mybinder(/*another parameters here*/); // <--- one more call
私は
int foo(int){return 0;}
boost::bind<int(*)(int)> a = boost::bind(f, _1);
を試してみましたが、それは動作しません。
「機能しません」とはどういう意味ですか? –
以前の回答を受け入れてください。あなたは1年以上ここにいました.SOの仕組みを学ぶのに十分な時間です。 –