1
我想緩存方法ID跨呼叫。爲此,我獲得方法ID:Java JNI方法ID緩存
// Put static to clarify it's saved across calls.
static jmethodID method = env->GetMethodID(class_HelloWorld, name, signature);
我的問題是:我需要做class_HelloWorld
一個全球性的裁判與NewGlobalRef
或方法ID可以從當地的裁判獲得並保存(我得到class_HelloWorld
使用FindClass
),而不需要全局引用類的元數據?