如何在CRO文件中调用CPP文件中的函数,反之亦然在ANDROID NDK中?

前端之家收集整理的这篇文章主要介绍了如何在CRO文件中调用CPP文件中的函数,反之亦然在ANDROID NDK中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法从c文件调用cpp文件中的函数,也无法从ndk本身的cpp文件调用c文件中的函数.

我也试过使用extern“C”{}.

粘贴我在这里尝试的代码供参考.

CFileCallingCpp.c:

  1. #include "CFileCallingCpp.h"
  2. //#include "custom_debug.h"
  3. #include "CppFile.h"
  4.  
  5.  
  6.  
  7.  
  8.  
  9. void tempFunc() {
  10.  
  11. }
  12.  
  13. void printTheLogs() {
  14. //Its not possible to make use of the CPP class in c file
  15. // CCustomDebug cls;
  16. // cls.printErrorLog("This is the error log %d %s",54321,"aaaaaaaaaaaaaaaaaa");
  17. // cls.printErrorLog("EXAMPLE","This is the error log %d %s","aaaaaaaaaaaaaaaaaa");
  18. printTheLogs1();
  19. // tempFunc();
  20. }

CFileCallingCpp.h:

  1. #ifndef _CFILECALLINGCPP_H_
  2. #define _CFILECALLINGCPP_H_
  3.  
  4. void printTheLogs();
  5.  
  6.  
  7. #endif

CppFile.cpp:

  1. #include "CppFile.h"
  2. #include "custom_debug.h"
  3. #include "CFileCallingCpp.h"
  4.  
  5. void printTheLogs1() {
  6. CCustomDebug::printErrorLog("This is the error log %d %s","aaaaaaaaaaaaaaaaaa");
  7. CCustomDebug::printErrorLog("EXAMPLE","aaaaaaaaaaaaaaaaaa");
  8. }
  9.  
  10. #if defined(__cplusplus)
  11. extern "C" {
  12. #endif
  13.  
  14. void callCFileFunc() {
  15. printTheLogs();
  16. // printTheLogs1();
  17. }
  18.  
  19.  
  20. #if defined(__cplusplus)
  21. }
  22. #endif

CppFile.h:

  1. #ifndef _CPPFILE_H_
  2. #define _CPPFILE_H_
  3.  
  4. void printTheLogs1();
  5.  
  6.  
  7. #endif

我得到的错误

  1. sh-4.1$/cygdrive/c/Android/android-ndk/ndk-build
  2. SharedLibrary : libJNIExInterface.so
  3. D:/EclipseWorkspace/NativeExample/obj/local/armeabi/objs-debug/JNIExInterface/CppFile.o: In function `callCFileFunc':
  4. D:/EclipseWorkspace/NativeExample/jni/CppFile.cpp:15: undefined reference to `printTheLogs()'
  5. D:/EclipseWorkspace/NativeExample/obj/local/armeabi/objs-debug/JNIExInterface/CFileCallingCpp.o: In function `printTheLogs':
  6. D:/EclipseWorkspace/NativeExample/jni/CFileCallingCpp.c:18: undefined reference to `printTheLogs1'
  7. collect2: ld returned 1 exit status
  8. make: *** [/cygdrive/d/EclipseWorkspace/NativeExample/obj/local/armeabi/libJNIExInterface.so] Error 1
  9. sh-4.1$

如果有人知道如何从ANDROID-NDK中的c代码调用cpp代码,请告诉我.

问候,
SSuman185

解决方法

extern“C”应该在C源包含的头文件中,而不是在C源文件中. C源文件包含的C头文件也是如此.

猜你在找的Android相关文章