c++ 是面向?qū)ο蟮木幊陶Z言,比較方便實(shí)現(xiàn)某些第三方庫,比如翻譯其他面向?qū)ο笳Z言的代碼,比 c 語言要方便的多。而 c 語言跟 c++ 很親和,可以用 c++ 來實(shí)現(xiàn),編譯成靜態(tài)庫,提供給 c 程序使用。 至于用靜態(tài)庫而不是動態(tài)庫,是因?yàn)殪o態(tài)庫會打包到 c 程序中,不需要依賴運(yùn)行場景中是否有該庫的存在,方便部署。當(dāng)然,如果第三方庫的代碼量太大,直接打包導(dǎo)致程序體積膨脹劇烈的話可以考慮動態(tài)庫。
代碼示例目錄結(jié)構(gòu)
代碼預(yù)覽
c++ 類庫代碼: myclass.h, myclass.cpp。在這些文件中實(shí)現(xiàn)第三方庫的所有功能。
// myclass.h
#ifndef MYCLASS_H
#define MYCLASS_H
class MyClass {private:
int x, y;
public:
MyClass(int _x, int _y) {this->x = _x;
this->y = _y;
}
public:
int getSum(){return this->x + this->y;
};
};
int api_getSum(int x, int y);
#endif
// myclass.cpp
#include#include "myclass.h"
int api_getSum(int x, int y) {MyClass obj(x, y);
std::cout<<"實(shí)例化對象完成"<
封裝類庫 api 為 c api 的 wrapper 文件:myclass_wrapper.h, myclass_wrapper.cpp。該文件只用于封裝第三方庫提供的 api 為c語言函數(shù)風(fēng)格,不需要實(shí)現(xiàn)第三方庫的具體功能,不使用第三方庫的 c++ 類型,比如 class myclass。wrapper 中的函數(shù)需要用 extern “C” {} 包裹聲明語句。
// myclass_wrapper.h
#ifndef MYCLASS_WRAPPER_H
#define MYCLASS_WRAPPER_H
#ifdef __cplusplus
extern "C" {#endif
int c_api_getSum(int x, int y);
#ifdef __cplusplus
}
#endif
#endif
// myclass_wrapper.cpp
#include "myclass_wrapper.h"
#include "myclass.h"
int c_api_getSum(int x, int y) {return api_getSum(x, y);
}
c 程序示例代碼:main.c
// main.c
#include "stdio.h"
#include "myclass_wrapper.h"
int main(int argc, char **argv)
{int sum = c_api_getSum(999, 2);
printf("%d + %d = %d\n", 999, 2, sum);
return 0;
}
#生成類庫中間文件 myclass_wrapper.o myclass.o, -O0 -ggdb 是為了 gdb 調(diào)試的時(shí)候信息更完整。
g++ -std=c++11 -O0 -ggdb -c src/myclass_wrapper.cpp src/myclass.cpp -Iinclude
#打包中間文件為靜態(tài)庫 libmyclass.a
ar -r libmyclass.a myclass_wrapper.o myclass.o
#編譯 c 示例程序, -lstdc++ 是鏈接 c++ 標(biāo)準(zhǔn)庫,為了在用到類似的 c++ 庫時(shí)能編譯通過。
gcc -std=c99 -O0 -ggdb main.c -o main -L./ -I./include -lmyclass -lstdc++
運(yùn)行示例程序./main
參考文章你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧