当前位置:   article > 正文

Linux C语言调用C++动态链接库_c# 调用linux socketcan动态库

c# 调用linux socketcan动态库

如果你有一个c++做的动态链接库.so文件,而你只有一些相关类的声明,那么你如何用c调用呢,

C++创始人在编写C++的时候,C语言正盛行,他不得不让C++兼容C。C++最大的特性就是封装,继承,多态,重载。而这些特性恰恰是C语言所不具备的。至于多态,核心技术是通过虚函数表实现的,其实也就是指针。而对于重载,与C语言相比,其实就是编译方式不同而已: C++编译方式和C编译方式。对于函数调用,编译器只要知道函数的参数类型和返回值以及函数名就可以进行编译连接。那么为了让C调用C++接口或者是说C++调用C接口,就必须是调用者和被调用者有着同样的编译方式。这既是extern "C"的作用,extern “C”是的程序按照C的方式编译。

下面具体看下面的代码:

1、myclass.h 

  1. #include <iostream>
  2. using namespace std;
  3. class Myclass {
  4. public:
  5. Myclass(){}
  6. ~Myclass(){}
  7. void Operation();
  8. };
2、myclass.cpp

  1. #include "myclass.h"
  2. using namespace std;
  3. void Myclass::Operation()
  4. {
  5. cout << "Hi my name is sjin" <<endl;
  6. }

3 interface.h

  1. #ifdef __cplusplus
  2. extern "C"{
  3. #endif
  4. void interface();
  5. #ifdef __cplusplus
  6. }
  7. #endif

4 interface.cpp

  1. #include "myclass.h"
  2. #include "interface.h"
  3. #ifdef __cplusplus
  4. extern "C"{
  5. #endif
  6. void interface()
  7. {
  8. Myclass obj;
  9. obj.Operation();
  10. }
  11. #ifdef __cplusplus
  12. }
  13. #endif

5 main.c

  1. #include "interface.h"
  2. int main()
  3. {
  4. interface();
  5. return 0;
  6. }

具体编译流程

1】首先生成动态库

 g++  myclass.cpp interface.cpp -fPIC -shared -o libtest.so

2】将动态库拷贝的/usr/lib目录下

3】编译main.c

gcc main.c -L.  -ltest

4】运行./a.out



参考资料:

http://blog.csdn.net/feiyinzilgd/article/details/6723882

http://www.bdqn.cn/news/201309/11368.shtml

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/173737?site
推荐阅读
相关标签
  

闽ICP备14008679号