0

我正在与一些将 void * 用于上下文对象(在本例中为 v8 函数)的代码集成,我希望将其转换回函数,但这会导致编译错误。你会如何处理这种情况?

void callback(void* context) {
    Local<Function> func = static_cast<Local<Function> *>(context);
    func->Call(Context::GetCurrent()->Global(), 1, 0);
}

这是注册回调的代码。请注意,fn 作为 void * 传递给“回调”。

Persistent<Function> fn = Persistent<Function>::New(Handle<Function>::Cast(args[0]));
registerEvent(&callback, /* context*/ &fn);
4

1 回答 1

1

为了使其工作,您需要context将其转换并分配给一个指针值,如下所示:

Local<Function> *func = static_cast<Local<Function> *>(context);
于 2012-12-10T21:24:02.907 回答