次の呼び出し可能オブジェクトがあるとします。
struct callable : public std::unary_function <void, void>
{
void
operator()() const
{
std::cout << "hello world" << std::endl;
}
};
astd::tr1::reference_wrapper<>
はそれを介して呼び出します。
callable obj;
std::tr1::ref(obj)();
代わりに、 がoperator()
引数を受け入れる場合:
struct callable : public std::unary_function <int, void>
{
void
operator()(int n) const
{
std::cout << n << std::endl;
}
};
std::tr1::bind
reference_wrapper を呼び出し可能なラッパーとして受け入れます...
callable obj;
std::tr1::bind( std::tr1::ref(obj), 42 )();
しかし、これの何が問題なのですか?
std::tr1::ref(obj)(42);
g++-4.4 は次のエラーでコンパイルに失敗します:
test.cpp:17: error: no match for call to ‘(std::tr1::reference_wrapper<const callable>) (int)’
/usr/include/c++/4.4/tr1_impl/functional:462: note: candidates are: typename std::tr1::result_of<typename std::tr1::_Function_to_function_pointer<_Tp, std::tr1::is_function::value>::type(_Args ...)>::type std::tr1::reference_wrapper<_Tp>::operator()(_Args& ...) const [with _Args = int, _Tp = const callable]