2012-04-23 2 views
0

Handle<Value> 배열을 설정하고 싶습니다. 나는 V8에 초보자 그리고 난 내가 예를 들어 수행 할 때 그것을 설정하는 방법을 찾을 수 없습니다 : 나는 Handle<Value>의를 어떻게해야합니까v8 설정 핸들 <Value> 배열 하우투?

error C2664: 'v8::Function::Call' : cannot convert parameter 3 from 'v8::Handle<T>' to 'v8::Handle<T> []' 
    1>  with 
    1>  [ 
    1>   T=v8::Value 
    1>  ] 

:

Persistent<Context> fcontext 
Handle<Value> Arr = Array::New(0); 
Persistent<Function> Func; 
Handle<Value> result = Func->Call(fcontext->Global(), 0, Arr); 

나는이 오류가 요소가 하나 인 배열?

답변