我正在尝试将成员函数指针作为模板参数传递。这是代码:
template <typename Ret, typename T, Ret(T::*mptr)()>
Handle<Value> get_value (Local<String> name, const AccessorInfo& info)
{
...
}
template <typename Ret, typename T>
void mbind (const char* name, Ret (T::*mptr)())
{
....
objectTemplate->SetAccessor (String::NewSymbol (name),get_value<Ret,T,mptr>);
}
这是我得到的错误:
wrapper.h:184:5: error: ‘mptr’ is not a valid template argument for type ‘int (Cell::*)()’
wrapper.h:184:5: error: it must be a pointer-to-member of the form `&X::Y'
...
据我所知,指向成员函数的指针是有效的模板参数。我不明白前面的代码有什么问题。我使用的编译器是 Ubuntu 下的 g++ 4.5.2。
提前致谢。
更新:
似乎代码应该是错误的,因为mptr
它是运行时变量。另一方面,前面的代码摘录编译:
所以……对吗?它取决于编译器吗?