当前位置:网站首页>C语言 结构体定义方法
C语言 结构体定义方法
2022-08-02 03:22:00 【a只如初见】
结构声明(也见有称做定义一个结构体)是描述结构如何组合的主要方法。
一般形式是:
struct 结构名{
成员列表
};
struct关键词表示接下来是一个结构。
下面归纳几种定义结构体变量的方法。
第一种是最基本最标准的结构体定义,即先定义结构体类型,再定义结构体变量。
struct student{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
};
struct student stu1,stu2; //此时stu1,stu2为student结构体变量
后面再定义新的变量也是struct student做类型名,如 struct student stu3;
第二种 定义结构体类型的同时定义结构体变量。
struct student{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
} stu1,stu2;
此后还可以继续定义student结构体变量,如:
struct student stu3;
第三种 不指定结构体名而直接定义结构体变量。
struct{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
} stu1,stu2;
一般不使用这种方法,因为直接定义结构体变量stu1、stu2之后,就不能再继续定义该类型的变量。
没有typedef的方法都例举完了,后面都是带typedef的方法。
第四种 先定义结构体类型,再定义结构体变量(有结构体名)。
typedef struct student{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
}student_t;
student_t stu1,stu2; //此时stu1,stu2为student结构体变量
struct student stu3;
后面再定义新的变量用student_t 或 struct student 做类型名都可以。
student_t 是一个别名。
第五种 先定义结构体类型,再定义结构体变量(无结构体名)。
typedef struct{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
}student_t;
student_t stu1,stu2; //此时stu1,stu2为student结构体变量
与第四种不同的是后面再定义新的变量只能用student_t 做类型名。
还有一种没有什么价值,相当于typedef白用了呗,效果与第一种方法无异。
typedef struct student{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
};
struct student stu1,stu2; //此时stu1,stu2为student结构体变量
实用情况中,第五种用得最多。
可以将下面这段 定义写在头文件中,供每个包含该头文件的源文件使用,定时变量的时候student_t stu1即可。
typedef struct{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
}student_t;
也可以将下面这段 定义写在头文件中,供每个包含该头文件的源文件使用,定时变量的时候struct student stu1即可,大部分人可能会觉得student_t 比 struct student 看起来更加简便。
struct student{
char no[20]; //学号
char name[20]; //姓名
char sex[5]; //性别
int age; //年龄
};
参考鸣谢:
https://blog.csdn.net/please_fix_/article/details/104595440
https://yum9193.blog.csdn.net/article/details/81190361
https://zhuanlan.zhihu.com/p/521248221
https://wenku.baidu.com/view/4ffde1d6f51fb7360b4c2e3f5727a5e9856a270f.html
边栏推荐
- np.unique()函数
- 腾讯50题
- 新工程加载YOLOV6的预训练权重问题
- Deveco studio Hongmeng app access network detailed process (js)
- 2022ACM夏季集训周报(五)
- AttributeError: 'Upsample' object has no attribute 'recompute_scale_factor'
- 磷脂-聚乙二醇-叠氮,DSPE-PEG-Azide,DSPE-PEG-N3,MW:5000
- Redis笔记进阶篇:万字长文-整理Redis,各种知识点,建议收藏
- MySQL删除表数据 MySQL清空表命令 3种方法
- DAY-1 | 求两个正整数的最大公约数与最小公倍数之和——辗转相除法
猜你喜欢
随机推荐
「PHP基础知识」空值(null)的使用
SSM整合
Deveco studio 鸿蒙app访问网络详细过程(js)
Redis笔记基础篇:6分钟看完Redis的八种数据类型
数据库操作作业
青蛙跳台阶:我如何得知它是一道斐波那契数列题?——应用题破题“三板斧”
DOM destruction and reproduction experiment
Cloud server installation and deployment of Nacos 2.0.4 version
跨域问题解决
SOCKS5
错误:with open(txt_path,‘r‘) as f: FileNotFoundError: [Errno 2] No such file or directory:
解决glob()返回文件排序不一致问题&onnx本地按照安装方法
Redis简单学习笔记
HCIP-第十天-BGP综合实验
Chapter 10 Clustering
mysql8.0安装教程与配置(最详细)操作简单
构造方法、方法重载、全局变量与局部变量
oracle内连接和外连接
JJWT工具类
Monaco Editor 的基本用法