C调用C++接口

news/2024/12/22 15:16:30/

C文件

#include <ctype.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <unistd.h>
#include <signal.h>
#include <dirent.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<stdio.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<assert.h>
#include<unistd.h>
#include<stdlib.h>
#include<errno.h>
#include<string.h>
#include<sys/types.h>
#include<fcntl.h>
#include<time.h>
#include<aio.h>extern "C" void funCPP();extern "C" void funC() {printf("funC, call funCPP\n");funCPP();
}

C++文件

#include <iostream>
#include <mutex>
#include <unistd.h>
#include <vector>
#include <algorithm>
#include <fstream>
#include <thread>
#include <string>
#include <functional>
#include <future>
#include <map>
#include <unordered_map>
#include <iostream>     // std::cout
#include <future>       // std::packaged_task, std::future
#include <chrono>       // std::chrono::seconds
#include <thread>       // std::thread, std::this_thread::sleep_for
#include <cstring>extern "C" void funC();
using namespace std;class Base {
public:Base() {cout << "base ctor" << endl;}virtual ~Base() {cout << "base dtor" << endl;}virtual void fun() {cout << "base fun" << endl;}
};class Drive: public Base {
public:Drive(): i(6) {cout << "Drive ctor" << endl;}virtual ~Drive() {cout << "Drive dtor" << endl;}void fun() override final {cout << "drive fun" << endl;}const int i = 5;};class Drive2 : public Drive {
public:Drive2() = default;//void fun() {//    cout << "drive2 fun" << endl;
};extern "C" void funCPP() {Base* d = new Drive2;d->fun();cout << "funCPP" << endl;
}void fun1() {cout << "fun1" << endl;
}int main () {fun1();funC();return 0;
}

编译运行:

g++ -std=c++11 test.cpp test.c
./a.out
fun1
funC, call funCPP
base ctor
Drive ctor
drive fun
funCPP

主要利用了C++的语言链接声明 extern “C” void funCPP,使得funCPP以C方式进行编译链接,让C语言的代码能够找到funCPP接口。


http://www.ppmy.cn/news/1475826.html

相关文章

Macbook pro插移动硬盘没反应,Macbook pro移动硬盘读不了怎么办 macbook插移动硬盘后无法使用

为了弥补Macbook pro硬盘容量的缺失&#xff0c;我们有时候会使用到外接硬盘或移动硬盘。一般来说&#xff0c;这些硬盘都是即插即用的&#xff0c;可能部分要安装插件。不过&#xff0c;在一些特殊情况下&#xff0c;也会遇到插硬盘没反应等问题。本文会给大家解答Macbook pro…

RustChinaConf 2024(Rust中国大会2024)号集令

自六月官宣以来&#xff0c;Rust中国大会2024受到了众多厂商的青睐。目前已经确定的重量级赞助商有&#xff1a; ICP&#xff08;互联网计算机&#xff09;非凸科技在线途游蚂蚁金服JetBrain GEAR Foundation INFINI Labs Greptime 等 其中钻石赞助仅剩少量名额 请有意向赞助大…

勒索防御第一关 亚信安全AE防毒墙全面升级 勒索检出率提升150%

亚信安全信舷AE高性能防毒墙完成能力升级&#xff0c;全面完善勒索边界“全生命周期”防御体系&#xff0c;筑造边界勒索防御第一关&#xff01; 勒索之殇&#xff0c;银狐当先 当前勒索病毒卷携着AI技术&#xff0c;融合“数字化”的运营模式&#xff0c;形成了肆虐全球的网…

Spring Boot 3.3 【二】Spring Boot自动配置机制深度解析

简单动作&#xff0c;深刻联结。在这技术海洋&#xff0c;我备好舟&#xff0c;等你扬帆。启航吧&#xff01; &#x1f31f;点击【关注】&#xff0c;解锁定期的技术惊喜&#xff0c;让灵感与知识的源泉不断涌动。 &#x1f44d;一个【点赞】&#xff0c;如同心照不宣的默契&a…

【数智化案例展】吉林省消防救援总队——基于大语言模型的119智慧助手

‍ 嘉诚信息案例 本项目案例由嘉诚信息投递并参与数据猿与上海大数据联盟联合推出的《2024中国数智化转型升级创新服务企业》榜单/奖项评选。 大数据产业创新服务媒体 ——聚焦数据 改变商业 随着信息时代的迅猛发展&#xff0c;消防人员正面临前所未有的知识爆炸挑战。为了高…

【数据结构】:时间和空间复杂度

目录 如何衡量一个代码的好坏 时间复杂度 概念 计算方法 实例计算 【实例1】 【实例2】 【实例3】 【实例4】&#xff1a;冒泡排序的时间复杂度 【实例5】&#xff1a;二分查找的时间复杂度 【实例6】&#xff1a;阶乘递归的时间复杂度 【实例7】&#xff1a;斐波那契…

防火墙双机热备和带宽管理

拓扑图 实验要求 1.对现有网络进行改造升级&#xff0c;将当个防火墙组网改成双机热备的组网形式&#xff0c;做负载分担模式&#xff0c;游客区和DMZ区走FW5&#xff0c;生产区和办公区的流量走FW4 2.办公区上网用户限制流量不超过100M&#xff0c;其中销售部人员在其基础上…

类和对象(2

*续上文中的运算符重载 4 重载运算符时,有前置和后置的,运算符重载的函数名都是operator, 无法很好区分 所以c规定,后置重载时,增加一个int形参 与前置做区分 5 重载<<和>>时需要重载为全局函数, 因为重载为成员函数时, this指针默认抢占了第一个形参位, 第一个形参…