在c语言里,是用typedef语句替换数据类型名
就像定义一个变量时,只是在前面加上typedef语句
#include<stdio.h>int main()
{typedef int y;typedef char c;y a=1;c b='w';printf("%d\n",a);printf("%c\n",b);
}
这这个代码里,typedef int y是将int在这段程序里命名为y,同样在typedef char c里面,是将char命名为c
y a=1等同于 int a=1
c b等同于char c='w'
#include<stdio.h>int main()
{
typedef struct test
{char name[10];int age;
}yy;
yy lisi;
lisi.age=10;
printf("%d\n",lisi.age);
}
在结构体里面,先定义结构结构,再后面加上要改的名字
typedef struct test
{
char name[10];
int age;
}yy
这段代码就是将结构体的名字改为yy
这样定义结构体变量时,只需要用yy lisi就可以,否则就是struct test lisi这么长的代码