我正在使用JNI的一些示例代碼。JNI獲取上下文
我有一個Java類,
public String getArtists(Context context)
...
然而,C++接口來此,編碼爲下面簡單地返回一個空指針
s_getArtistsGetArtistsMethodID = env->GetMethodID(s_getArtistsClassID, "getArtists", "(Landroid/content/Context;)V");
缺少什麼我在這裏?下面的代碼按預期工作,所以我認爲這是與上下文參數有關。
s_getArtistsConstructorMethodID = env->GetMethodID(s_getArtistsClassID, "<init>", "()V");
非常感謝您的幫助!
什麼是「」「'參數? –