gpt4 book ai didi

c++ - 无法转换函数指针参数

转载 作者:行者123 更新时间:2023-11-28 08:33:40 25 4
gpt4 key购买 nike

我得到的错误:

error C2664: 'v8::FunctionTemplate::New' : cannot convert parameter 1 from 'v8::Handle<T> (__cdecl *)(const v8::Arguments &)' to 'v8::InvocationCallback'

相关定义:

typedef Handle<Value> (*InvocationCallback)(const Arguments& args);




template<class C> class V8ScriptClass
{
public:
template<class C, typename Rtype, typename Ptype1, Rtype (C::*FuncPtr)(Ptype1)>
void RegisterFunc(const char* const scriptname)
{
objtemplate->Set(
v8::String::New(scriptname),
v8::FunctionTemplate::New(
V8ScriptClass<C>::RelayCallback<C, Rtype, Ptype1, FuncPtr>
));
};

template<typename Rtype, typename Ptype1, Rtype (*FuncPtr)(Ptype1 param1)>
static v8::Handle<v8::Value> RelayCallback(const v8::Arguments& args)
{
std::cerr<<__FUNCTION__<<std::endl;
v8::HandleScope handle_scope;
return handle_scope.Close(toJSType( ((FuncPtr)(toCType(args[0]))) ));
};

在我看来,typedef 和实际函数签名是相同的。

编辑:忘记了一个声明:

class EXPORT FunctionTemplate : public Template {
public:
/** Creates a function template.*/
static Local<FunctionTemplate> New(
InvocationCallback callback = 0,
Handle<Value> data = Handle<Value>(),
Handle<Signature> signature = Handle<Signature>());

最佳答案

我发现了错误。 RelayCallback 模板将静态函数指针作为参数,我尝试用成员函数指针实例化它。我只需要将它更改为成员函数指针模板参数。

关于c++ - 无法转换函数指针参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/706908/

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