周游C语言教程16 - typedef
这是周游C语言的第十六篇教程,你将在这篇文章里认识typedef。
typedef
C语言中提供了typedef
关键字他运行你为数据类型取一个新的名字。
typedef unsigned char byte;
定义好之后,我们就可以使用byte
来定义一个unsigned char
类型的数据。
byte a = 2;
通常用法
因为在不同编译器中数据长度可能不同,因此我们常会使用如下代码
typedef unsigned char uint8;
typedef unsigned short uint16;
typedef short int16;
typedef unsigned int uint32;
typedef int int32;
在定义数据时使用typedef之后的类型,这样在更改编译器之后,只需要更改上述代码相关的类即可。typedef
通常也会用在结构体定义上
typedef struct point_xy{
char x;
char y;
}point;
这里的point
不再是声明一个变量,而是把struct point_xy
数据类型定义成point
数据类型。
point a;
a.x = 1;
a.y = 2;
使用这种方式可以减少struct
,使代码更加的简洁。