我正在与一些将 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);