前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >C调用C++链接库

C调用C++链接库

作者头像
用户1258909
发布2018-07-03 10:45:20
1.1K0
发布2018-07-03 10:45:20
举报
文章被收录于专栏:拂晓风起拂晓风起

C调用C++链接库:

  1.编写C++代码,编写函数的时候,需要加入对C的接口,也就是extern “c"

  2.由于C不能直接用"class.function”的形式调用函数,所以C++中需要为C写一个接口函数。例如本来要调用student类的talk函数,就另外写一个cfun(),专门建一个student类,并调用talk函数。而cfun()要有extern声明

  3.我在练习中就使用在C++头文件中加extern ”c”的方法。而C文件要只需要加入对cpp.h的引用

  4.详细见如下代码:

    student是一个类,里边有talk函数,就输出一句话而已

    cpp.cpp与cpp.h是两个C++代码,包含对C的接口

    最后用C代码:helloC.c来测试结果

  student.cpp:

1#include <iostream>
2using namespace std;
3#include "student.h"
4void student::talk(){
5 cout<<"I am Kenko"<<endl;
6}
7
8
9

   student.h:

1#ifndef _STUDENT_
2#define _STUDENT_
3
4class student{
5 public:
6   void talk();
7};
8
9#endif

  cpp.h:

1#ifndef _CPP_
 2#define _CPP_
 3
 4#include "student.h"
 5#ifdef __cplusplus
 6extern "C" {
 7#endif
 8void helloCplusplus();
 9#ifdef __cplusplus
10}
11#endif
12
13#endif

  cpp.cpp:

1#include <iostream>
 2using namespace std;
 3
 4#include "cpp.h"
 5student stu;
 6void helloCplusplus(){
 7cout<<"helloC++"<<endl;
 8stu.talk();
 9}
10
11void helloCplusplus2(){
12cout<<"helloC++"<<endl;
13}

  helloC.c:

#include <stdio.h>
#include "cpp.h"
int main(){
    helloCplusplus();
     return 0;
}

  我这次练习是直接在xp环境下,在CMD命令行方式用gcc,g++来编译的。

1.编译C++代码,成为链接库

  g++ -shared -o libccall.so cpp.cpp student.cpp  (libccall.so为库名)

2.编译C代码:g++ helloC.c ./libccall.so。这里一定要用g++,如果用gcc会出错,因为gcc编译C++文件才会自动调用g++,但如果对象直接就是C文件就不会调用g++了。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2009-11-05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档