C语言vs怎么使用自己做的静态库与动态库,本人小白,请求详解

 我来答
百度网友ded4135
高粉答主

2018-04-19 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.7万
采纳率:87%
帮助的人:1.2亿
展开全部

1.静态链接库

打开VS2010,新建一个项目,选择win32项目,点击确定,选择静态库这个选项,预编译头文件可选可不选。

在这个空项目中,添加一个.h文件和一个.cpp文件。名字我们起为static.h和static.cpp

static.h文件:

[cpp] view plaincopy

  • #ifndef LIB_H  

  • #define LIB_H  

  • extern "C" int sum(int a,int b);  

  • #endif


  • static.cpp文件:
  • [cpp] view plaincopy

  • #include "static.h"  

  • int sum(int a,int b)  

  • {  

  • return a+b;  

  • }

  • 编译这个项目之后,会在debug文件夹下生成static.lib文件,这个就是我们需要的静态链接库。
  • 下面说明如何调用静态链接库。

    首先需要新建一个空项目,起名为test。将之前static项目下的static.h和static.lib这个2个文件复制到test项目的目录下,并在工程中加入static.h文件。

    新建一个test.cpp文件如下:

    [cpp] view plaincopy

  • #include <stdio.h>  

  • #include <stdlib.h>  

  • #include "static.h"  

  • #pragma comment(lib,"static.lib")  

  • int main()  

  • {  

  • printf("%d\n",sum(1,2));  

  • system("pause");  

  • return 0;  

  • }

  • 编译运行可得结果:3
  • #pragma comment(lib,"static.lib"),这一句是显式的导入静态链接库。除此之外,还有其他的方法,比如通过设置路径等等,这里不做介绍。

    2.动态链接库

    和创建静态链接库一样,需要创建一个空的win32项目,选择dll选项。创建dynamic.cpp和dynamic.h文件

    dynamic.h文件:

    [cpp] view plaincopy

  • #ifndef DYNAMIC  

  • #define DYNAMIC  

  • extern "C" __declspec(dllexport)int sum(int a, int b);  

  • #endif DYNAMIC 


  • dynamic.cpp文件:

    [cpp] view plaincopy

  • #include "dynamic.h"  

  • int sum(int a, int b)  

  • {  

  • return a+b;  

  • }

  • 编译这个项目,会在debug文件夹下生成dynamic.dll文件。

  • 下面介绍如何调用动态链接库,这里讲的是显式的调用。

    在刚才的test项目下,把static.lib和static.h文件删除,把dynamic.h和dynamic.dll复制到该目录下,并在项目中添加dynamic.h文件,修改test.cpp文件为:

    [cpp] view plaincopy

  • #include <stdio.h>  

  • #include <stdlib.h>  

  • #include<Windows.h>  

  • #include "dynamic.h"  

  • int main()  

  • {  

  • HINSTANCE hDll=NULL;  

  • typedef int(*PSUM)(int a,int b);  

  • PSUM pSum;  

  • hDll = LoadLibrary(L"dynamic.dll");  

  • pSum = (PSUM)GetProcAddress(hDll,"sum");  

  • printf("%d\n",pSum(1,2));  

  • system("pause");  

  • FreeLibrary(hDll);  

  • return 0;  

  • }


  • 编译运行结果为:3
  • 特别提示:

    1.extern "C"中的C是大写,不是小写

    2.如果从VS2010中直接运行程序,lib和dll需要放到test项目的目录下;如果想双击项目test下的debug文件中的exe文件直接运行的话,需把lib和dll放入debug文件夹下。

追问
extern "C"
这个是什么意思?
mamiai66
2018-04-19
知道答主
回答量:18
采纳率:0%
帮助的人:2.9万
展开全部
不太懂,但自己做的话会留接口吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式