1

我正在尝试将成员函数指针作为模板参数传递。这是代码:

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它是运行时变量。另一方面,前面的代码摘录编译:

http://ideone.com/cv8pq

所以……对吗?它取决于编译器吗?

4

2 回答 2

4

mptr是一个运行时变量 - 您不能将其作为模板参数提供。检查http://ideone.com/CIL4C

编辑

奇怪的是http://ideone.com/cv8pq类似于您的代码的东西成功编译和工作。

于 2012-03-13T23:56:53.070 回答
1

mbind应该已经有一个模板参数:

template <typename Ret, typename T, Ret (T::*mptr)()> 
void mbind (const char* name) {
    objectTemplate->SetAccessor (String::NewSymbol (name),get_value<Ret,T,mptr>()); 
}

()PS:后面的你忘了get_value<>

于 2012-03-14T00:00:45.367 回答