我的目标是构建一个 Java 类女巫,实现从 C++ 调用的方法。此方法获取同一类中另一个 Java 方法的名称。通过 java-reflection API,我想获得对它的引用(并稍后调用它)。
但是从 C++ 调用的方法没有找到其他 Java 方法。如果它从java运行,它工作正常。我想念什么?
爪哇:
public void myCPlusPlusFunc(String method){ // I'll pass "noparam" in here
logMessage("Searching for method " + method + "....");
for (Method m : this.getClass().getMethods()) {
if (method == m.getName()) {
logMessage("Found it!"); // never found when called through JNI/C++
// (...) invoke the method etc...
}
}
}
public void noparam() {
logMessage("noparam got called");
}
C++
JNIEnv *env = theJVMLoader->getENV();
jmethodID m = env->GetMethodID(getBeanClass(), "myCPlusPlusFunc", "(Ljava/lang/String;)V");
if (env->ExceptionCheck()) {
handleException();
ASSERT(FALSE);
return FALSE;
}
ASSERT(m);
if (m)
{
// "noparam" is the method i expect to find
jstring s = env->NewStringUTF("noparam");
env->CallVoidMethod(getBeanInstance(), m, s);
}