次のコードでは、17 行目でコンパイル エラーが発生します。
#include <boost/bind.hpp>
#include <boost/function.hpp>
void func()
{}
class A{
public:
template <typename T>
static void foo(T const& arg){}
template <typename T>
void bar(T const& arg){
boost::bind(&A::foo<T>, arg); //OK
boost::function<T> functor1 = boost::bind(func); //OK
boost::function<T> functor2 = boost::bind(&A::foo<T>, arg); //ERROR, LINE 17
}
};
int main()
{
A obj1;
obj1.bar(func);
}
問題は、17 行目の functor2 のプロトタイプはどうあるべきかということです。
functor2 のプロトタイプを「boost::function<void()>」にしたい場合、boost::bind がそのような型を返すようにするにはどうすればよいですか?
コンパイル エラー:usr/include/boost/bind/bind.hpp:253: error: invalid initialization of reference of type 'void (&)()' from expression of type 'void (*)()'
どういう意味ですか?