我正在尝试使用ndk-build构建一个非常简单的本机函数并获得以下错误。
DriverAdapter.cpp:6:69: error: expected ',' or '...' before 'this'
以下是我的.mk和.cpp文件
DriverAdapter.cpp
#include <jni.h>
#include <string.h>
#include <android/log.h>
#define DEBUG_TAG "NDK_AndroidNDK1SampleActivity"
void Java_com_ihearhtpi_MainActivity_helloLog(JNIEnv * env, jobject this, jstring logThis)
{
jboolean isCopy;
const char * szLogThis = (*env)->GetStringUTFChars(env, logThis, &isCopy);
__android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "NDK:LC: [%s]", szLogThis);
(*env)->ReleaseStringUTFChars(env, logThis, szLogThis);
}
Android.mk
LOCAL_PATH:= $(致电my-dir)
include $(call all-subdir-makefiles)
include $(CLEAR_VARS)
LOCAL_LDLIBS := -llog
LOCAL_MODULE :=driver
LOCAL_SRC_FILES :=DriverAdapter.cpp
include $(BUILD_SHARED_LIBRARY)
不确定为什么会这样。
答案 0 :(得分:1)
你无法将你的论点命名为“this”
答案 1 :(得分:1)
问题是this
是c ++关键字。并且您不能将关键字用作变量名。