摘要: 动态链接库(.so)可以让程序在运行时被加载,当so修改时,使用程序不需要重新编译就可以使用。本文介绍几个函数,讲述so的加载和方法调用。void * dlopen( const char * pathname, int mode);以指定模式打开某动态链接库文件,返回句柄。模式有:RTLD_LAZ... 阅读全文
posted @ 2013-09-06 17:46 春文秋武 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.unixtime和可读时间的转换unixtime是距"1970-01-01 08:00:00"的时间秒数unixtime -> readableselect from_unixtime(double,format)readable -> unixtimeselect unix_timestamp... 阅读全文
posted @ 2013-09-06 15:30 春文秋武 阅读(111) 评论(0) 推荐(0) 编辑