我无法从c文件调用cpp文件中的函数,也无法从ndk本身的cpp文件调用c文件中的函数.
我也试过使用extern“C”{}.
CFileCallingCpp.c:
#include "CFileCallingCpp.h" //#include "custom_debug.h" #include "CppFile.h" void tempFunc() { } void printTheLogs() { //Its not possible to make use of the CPP class in c file // CCustomDebug cls; // cls.printErrorLog("This is the error log %d %s",54321,"aaaaaaaaaaaaaaaaaa"); // cls.printErrorLog("EXAMPLE","This is the error log %d %s","aaaaaaaaaaaaaaaaaa"); printTheLogs1(); // tempFunc(); }
CFileCallingCpp.h:
#ifndef _CFILECALLINGCPP_H_ #define _CFILECALLINGCPP_H_ void printTheLogs(); #endif
CppFile.cpp:
#include "CppFile.h" #include "custom_debug.h" #include "CFileCallingCpp.h" void printTheLogs1() { CCustomDebug::printErrorLog("This is the error log %d %s","aaaaaaaaaaaaaaaaaa"); CCustomDebug::printErrorLog("EXAMPLE","aaaaaaaaaaaaaaaaaa"); } #if defined(__cplusplus) extern "C" { #endif void callCFileFunc() { printTheLogs(); // printTheLogs1(); } #if defined(__cplusplus) } #endif
CppFile.h:
#ifndef _CPPFILE_H_ #define _CPPFILE_H_ void printTheLogs1(); #endif
我得到的错误:
sh-4.1$/cygdrive/c/Android/android-ndk/ndk-build SharedLibrary : libJNIExInterface.so D:/EclipseWorkspace/NativeExample/obj/local/armeabI/Objs-debug/JNIExInterface/CppFile.o: In function `callCFileFunc': D:/EclipseWorkspace/NativeExample/jni/CppFile.cpp:15: undefined reference to `printTheLogs()' D:/EclipseWorkspace/NativeExample/obj/local/armeabI/Objs-debug/JNIExInterface/CFileCallingCpp.o: In function `printTheLogs': D:/EclipseWorkspace/NativeExample/jni/CFileCallingCpp.c:18: undefined reference to `printTheLogs1' collect2: ld returned 1 exit status make: *** [/cygdrive/d/EclipseWorkspace/NativeExample/obj/local/armeabi/libJNIExInterface.so] Error 1 sh-4.1$
如果有人知道如何从ANDROID-NDK中的c代码调用cpp代码,请告诉我.
问候,
SSuman185
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。