typedef的几个用法

来源:互联网 发布:上海行知中学校服 编辑:程序博客网 时间:2024/06/04 21:50

typedef int int32_t;

int a;

等价于

int32_t a;

 

typedef int *pint32_t;

int *pa;

等价于

pint32_t pa;

 

typedef char string[32];

char s[32];

等价于

string s;

 

typdef int (*fntype)(int);

fntype fnptr;

fnptr为函数指针,可以指向如下类型的函数

int func(int a);

 

 

 

 

原创粉丝点击