本文共 392 字,大约阅读时间需要 1 分钟。
普通用法:为数据类型取别名
typedef int Zhang;
以上语句表示:为int类型取一个名为Zhang的别名
int i;Zhang i;
以上两条语句是等价的。
在结构体中的应用
typedef struct student{ int sid; char[20] name;}ST;struct student st; //等价于ST st;
typedef struct student{ int sid; char[20] name;}* PST;struct student * st; //等价于PST st;
typedef struct student{ int sid; char[20] name;}* PST, ST; PST 等价于 struct student *ST 等价于 struct student
转载地址:http://eqykl.baihongyu.com/