gpt4 book ai didi

使用成员函数作为模板参数时的c++编译错误

转载 作者:行者123 更新时间:2023-11-30 01:26:47 26 4
gpt4 key购买 nike

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

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

那么……这样对吗?它取决于编译器吗?

最佳答案

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

编辑

奇怪的是http://ideone.com/cv8pq与您的代码类似的东西可以成功编译和运行。

关于使用成员函数作为模板参数时的c++编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9693911/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com