由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 帮忙看看怎么理解这个指针
相关主题
btw, MS C++ 是ECMA-372标准C语言重复定义问题
interview with Ben Klemens, author of 21st Century C请问C语言里这个写法是什么意思
C 语言的官方 spec怎么得到char *分配空间的大小?
GCC 居然允许变量长度的向量stdbool.h及其他
c vs c++C/C++里面求normal distribution的cdf有可直接调用的函数吗?
问个简单的C++问题Help needed on coding for Fibonacci series
C/C++ __int64和long long, cross platform问题gcc 优化不优化运算结果不一样?gcc 的 bug?
ms cl.exe 的选项a novice c++ question: array with nonconstant length
相关话题的讨论汇总
话题: dlsym话题: cosine话题: cos话题: void话题: handle
进入Programming版参与讨论
1 (共1页)
j*a
发帖数: 14423
1
从man dlopen里面看来的
/* Writing: cosine = (double (*)(double)) dlsym(handle, "cos");
would seem more natural, but the C99 standard leaves
casting from "void *" to a function pointer undefined.
The assignment used below is the POSIX.1-2003 (Technical
Corrigendum 1) workaround; see the Rationale for the
POSIX specification of dlsym(). */
*(void **) (&cosine) = dlsym(handle, "cos");
1 (共1页)
进入Programming版参与讨论
相关主题
a novice c++ question: array with nonconstant lengthc vs c++
C语言里面的register变量能否进行取地址操作? (转载)问个简单的C++问题
请推荐一款windows xp 平台上优秀的C语言编译/编辑器C/C++ __int64和long long, cross platform问题
请教一个结构体占内存大小的问题ms cl.exe 的选项
btw, MS C++ 是ECMA-372标准C语言重复定义问题
interview with Ben Klemens, author of 21st Century C请问C语言里这个写法是什么意思
C 语言的官方 spec怎么得到char *分配空间的大小?
GCC 居然允许变量长度的向量stdbool.h及其他
相关话题的讨论汇总
话题: dlsym话题: cosine话题: cos话题: void话题: handle