概述
直接上例子:存在三个文件
example.cpp中的文件
#include<iostream>
#include"function.h"
using namespace std;
int fun(int a,int b);
int main()
{
cout<<fun(2,3)<<endl;
cout<<"hello world"<<endl;
return 0;
}
function.cpp
#include<iostream>
#include "function.h"
int fun(int a,int b)
{
return a+b;
}
function.h
#include<iostream>
int fun(int a,int b);
linux下用生成静态库的命令 ar 处理 function.o 文件生成静态库文件
有关详细知识可以参看官方手册,我们举个人脸的识别的例子,看如何独立编译的静态库
最后
以上就是碧蓝红酒为你收集整理的6、C++ 静态编译链接使用库,及例子libfacedetection人脸识别应用的全部内容,希望文章能够帮你解决6、C++ 静态编译链接使用库,及例子libfacedetection人脸识别应用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复