Linux系统共享库编程

昝辉Zac Zac的SEO博客,坚持12年,优化成为生活。

一、说明

类似Windows系统中的动态链接库,Linux中也有相应的共享库用以支持代码的复用。Windows中为*.dll,而Linux中为*.so。下面详细介绍如何创建、使用Linux的共享库。

二、创建共享库

在mytestso.c文件中,代码如下:

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. intGetMax(inta,intb)
  4. {
  5. if(a>=b)
  6. returna;
  7. returnb;
  8. }
  9. intGetInt(char*psztxt)
  10. {
  11. if(0==psztxt)
  12. return-1;
  13. returnatoi(psztxt);
  14. }

然后使用下列命令进行编译:

gcc -fpic -shared mytestso.c -o mytestso.so

-fpic 使输出的对象模块是按照可重定位地址方式生成的

编译成功后,当前目录下有mytestso.so,此时已成功创建共享库mytestso.so。

三、使用共享库

共享库中的函数可被主程序加载并执行,但是不必编译时链接到主程序的目标文件中。主程序使用共享库中的函数时,需要事先知道所包含的函数的名称(字符串),然后根据其名称获得该函数的起始地址(函数指针),然后即可使用该函数指针使用该函数。

在mytest.c文件中,代码如下:

  1. #include<dlfcn.h>
  2. #include<stdio.h>
  3. intmain(intargc,char*argv[])
  4. {
  5. void*pdlhandle;
  6. char*pszerror;
  7. int(*GetMax)(inta,intb);
  8. int(*GetInt)(char*psztxt);
  9. inta,b;
  10. char*psztxt="1024";
  11. //openmytestso.so
  12. pdlhandle=dlopen("./mytestso.so",RTLD_LAZY);
  13. pszerror=dlerror();
  14. if(0!=pszerror){
  15. printf("%sn",pszerror);
  16. exit(1);
  17. }
  18. //getGetMaxfunc
  19. GetMax=dlsym(pdlhandle,"GetMax");
  20. pszerror=dlerror();
  21. if(0!=pszerror){
  22. printf("%sn",pszerror);
  23. exit(1);
  24. }
  25. //getGetIntfunc
  26. GetInt=dlsym(pdlhandle,"GetInt");
  27. pszerror=dlerror();
  28. if(0!=pszerror){
  29. printf("%sn",pszerror);
  30. exit(1);
  31. }
  32. //callfun
  33. a=200;
  34. b=600;
  35. printf("max=%dn",GetMax(a,b));
  36. printf("txt=%dn",GetInt(psztxt));
  37. //closemytestso.so
  38. dlclose(pdlhandle);
  39. }

相关广告
  • Linux系统共享库编程 Linux系统共享库编程 Linux系统共享库编程
相关阅读

Linux系统共享库编程

2019/10/10 17:48:24 | 谷歌SEO算法 | 手机网站制作