c语⾔中typedef的⽤法
typedef是为现有的类型起⼀个别名,使使⽤起来更加的⽅便,注意⼀点,它并没有产⽣新的类型。
typedef int BOOL;为int型起了⼀个新的别名BOOL。例如下边的代码,BOOL为int的别名,然后就可以直接使⽤了。
typedef int BOOL;
#define TRUE 1
#define FALSE 0
BOOL flag = TRUE;
c语言char的用法在结构体中的⽤法
typedef struct student{
char cName[20];//姓名
int iNumber;//电话号码
struct student *next;//指向下⼀个节点
} LinkList;
LinkList *head;
以上定义了⼀个新的结构体student,并将结构体起了⼀个新的别名LinkList。其实不⽤typedef也是可以的,如下边的代码
struct student{
char cName[20];//姓名
int iNumber;//电话号码
struct student *next;//指向下⼀个节点
};
struct student *head;
不⽤typedef,定义变量时需要加上struct student,⽐较⿇烦。
关于结构体指针,如下代码
typedef struct student{
char cName[20];//姓名
int iNumber;//电话号码
struct student *next;//指向下⼀个节点
}*LinkList;
LinkList head;
这个是定义 struct student{}*的别名为LinkList,⽽不是struct student{}的别名为*LinkList,所以下边定义指针可以直接这样使⽤。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。