M
masherman1970
Hello,
Let's say I have two c++ funcs: foo and bar. Inside of foo I call
PushLocalFrame, then I call bar, and then I call PopLocalFrame. Will
this delete local java refs created in bar?
// begin psuedo code
void bar()
{
local_ref = jni_env->NewObject()
}
void foo()
{
PushLocalFrame()
bar()
PopLocalFrame()
}
// end pseudo code
thanks,
Marc
Let's say I have two c++ funcs: foo and bar. Inside of foo I call
PushLocalFrame, then I call bar, and then I call PopLocalFrame. Will
this delete local java refs created in bar?
// begin psuedo code
void bar()
{
local_ref = jni_env->NewObject()
}
void foo()
{
PushLocalFrame()
bar()
PopLocalFrame()
}
// end pseudo code
thanks,
Marc