标签:
Android NDK带的jni例子都是使用C定义JNI接口,但是在项目中,因为Native代码是用C++编写的,所以我就使用C++定义JNI接口,但是初学者总会遇到很多问题:
jni中的常见问题:
1、base operand of ‘->‘ has non-pointer type ‘JNIEnv {aka _JNIEnv}‘和Method ‘GetStringUTFChars‘ could not be resolved
其中这个问题是跟你jni配置时到底是.cpp还是.c文件及如图所示:
和
解决问题的办法:
错误的办法:
网上有一种方法是如下,但这方方法明显是骗小孩子的,哪有用忽略这种东西的,不推荐
正确的办法:
问题是就是上面第二点,因此
这是如果想深究原因可以查看<jni.h>
1、用.cpp文件定义的
const char* GetStringUTFChars(jstring string, jboolean* isCopy)
{ return functions->GetStringUTFChars(this, string, isCopy); }
2、用.c文件定义
const char* (*GetStringUTFChars)(JNIEnv*, jstring, jboolean*);
base operand of '->' has non-pointer type 'JNIEnv {aka _JNIEnv}'和Method 'GetStringUTFChars' could no
标签:
原文地址:http://blog.csdn.net/hejia729371286/article/details/51356983