博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《Advanced Linux Programming》读书笔记(1)
阅读量:6133 次
发布时间:2019-06-21

本文共 769 字,大约阅读时间需要 2 分钟。

动态加载共享库,这个知识点书上简单提了下,我做了个简单例子加深印象
main.c
复制代码
#include  <stdio.h>
#include  <dlfcn.h>
int main(int argc, char** argv)
{
void* handle = dlopen ("libreciprocal .so", RTLD_LAZY); 
double  (*reciprocal)(int) = dlsym (handle, "reciprocal"); 
int  num;
num = atoi(argv[1]);
printf(“%d 的倒数是%g\n”,num, reciprocal(num)); 
dlclose (handle); 
return 0;
}
复制代码
reciprocal.hpp
复制代码
#ifdef __cplusplus 
extern "C" {
#endif 
 
extern double reciprocal (int i); 
 
#ifdef __cplusplus 
#endif     
复制代码
reciprocal.cpp
复制代码
#include <cassert> 
#include "reciprocal.hpp" 
 
double reciprocal (int i) {
  // I should be non-zero. 
  assert (i != 0); 
  return 1.0/i; 
复制代码
具体编译过程:
注:这里我将共享库放置在/home/phinecos/lib下,
本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2009/03/23/1419884.html,如需转载请自行联系原作者
你可能感兴趣的文章
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>