大家好,我是小新,我来为大家解答以上问题。typedef struct用法详解,typedef struct很多人还不知道,现在让我们一起来看看吧!
1、typedef声明新的类型来代替已有的类型的名字。
2、 如: typedef int INTEGER; 下面两行等价 int i; INTEGER i; 可以声明结构体类型: typedef struct { int age; int score; }STUDENT; 定义变量: 只能写成 STUDENT stu; 如果写成 typedef struct student { int age; int score; }STUDENT; 下面三行等价: STUDENT stu; struct student stu; student stu; 大概意思就是上面的,不太明白hi我。
本文到此讲解完毕了,希望对大家有帮助。