C语言中的typedef用法

C语言中的typedef用法

用法

typedef 数据类型 自定义标识符;
可以理解为定义一个特定数据类型的变量,名字就是用户自己定义的标识符。当我们下次需要再次定义一个这种类型的变量时,便可以直接用这个标识符来定义变量。
但是需要注意的是,只是可以理解为定义一个特定数据类型的“变量”,名字就是用户自己定义的标识符,但是这里所说的变量可不是一个真正的变量,只是一种数据类型的代号而已。

举例

typedef unsigned int uint;
uint i;
//等价于 unsigned int i;
typedef struct student
{
	char name[3];
	int age;
	float score;
}STU;
STU stu;
//等价于  struct student
{
	char name[3];
	int age;
	float score;
};
struct student stu;



typedef unsigned int *uintp,uint;
uint i;uintp p;
//等价于 unsigned int i;unsigned int *p;
typedef struct student
{
	char name[3];
	int age;
	float score;
}*STUp,STU;
STU stu;STUp pstu;
//等价于  struct student
{
	char name[3];
	int age;
	float score;
};
struct student stu;struct student *pstu;
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ღ 金龍戲水 ღ

你的鼓励将是我创作的最大动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值