博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
我的编程学习日志(7)--typedef的扩展
阅读量:5361 次
发布时间:2019-06-15

本文共 439 字,大约阅读时间需要 1 分钟。

typedef最常见的用法就是:

typedef int I;

typedef struct student stu;

typedef struct student* pstu;

 

 

不过我们有时也会见到这样的用法

typedef struct student

{

int a;

} stu;

其实这个和typedef struct student stu是一样的。

 

typedef struct student

{

int a;

}* pstu;

这和和typedef struct student* pstu 一样。

 

另外,有时也会看到这种情况:

typedef struct student

{

int a;

}* pstu,stu;

这个就相当于:

typedef struct student* pstu;

typedef struct student stu;

 

 

转载于:https://www.cnblogs.com/ikaze/p/5140097.html

你可能感兴趣的文章
spring注入Properties
查看>>
jmeter(五)创建web测试计划
查看>>
python基本数据类型
查看>>
1305: [CQOI2009]dance跳舞 - BZOJ
查看>>
将html代码中的大写标签转换成小写标签
查看>>
jmeter多线程组间的参数传递
查看>>
零散笔记
查看>>
信息浏览器从Android的浏览器中传递cookie数据到App中信息浏览器
查看>>
hash储存机制
查看>>
HI3531uboot开机画面 分类: arm-linux-Ubunt...
查看>>
制作U盘启动CDLinux 分类: 生活百科 ...
查看>>
strcpy函数里的小九九
查看>>
搭建ssm过程中遇到的问题集
查看>>
OpenLayers绘制图形
查看>>
tp5集合h5 wap和公众号支付
查看>>
Flutter学习笔记(一)
查看>>
iOS10 国行iPhone联网权限问题处理
查看>>
洛谷 P1991 无线通讯网
查看>>
Codeforces Round #178 (Div. 2) B. Shaass and Bookshelf 【动态规划】0-1背包
查看>>
SparkStreaming 源码分析
查看>>