typeof是获取变量的类型。
具体使用看看下面的代码你就懂了。
#include
struct _struct_t
{
}struct_t;
void fun()
{
printf("OK\n");
}
int main(int argc,char *argv[])
{
int a;
char b;
void (*p)(void);
typeof(a) aa;
typeof(b) bb;
typeof(p) pp;
typeof(struct_t) struct_tt;
pp = &fun;
pp();
return 0;
}
阅读(9299) | 评论(0) | 转发(1) |