08:结构体

结构体

1、为什么需要结构体

为了表示一些复杂的事物,而普通的基本类型无法满足实际要求。什么叫结构体

把一些基本类型数据组合在一起形成的一个新的数据类型,这个叫做结构体(复合数据类型)。

列如:

c 复制代码
#include <stdio.h>

struct Student//结构体,定义了一个Student的数据类型。由int,float,char类型组成
{
	int age;
	float score;
	char sex;
};//逗号不能省

int main (void)
{
	struct Student st = {15, 66.6, 'F'};//给Student类型命名。
	return 0;
}

2、如何定义结构体

第一种方式:如上面的例子

第二种方式:

c 复制代码
#include <stdio.h>

struct Student
{
	int age;
	float score;
	char sex;
}st;//直接在这里定义数据类型的名字

int main (void)
{
	struct Student st = {15, 66.6, 'F'};
	return 0;
}

推荐使用第一种方式。

3、怎么使用结构体变量

3.1、赋值和初始化

赋值:

 第一种:struct Student st = {15, 66.6, 'F'};
 第二种:struct Student st;
         st.age = 15;
         st.score = 66.6;
         st.sex = 'F';

3.2、结构体变量的输出

第一种:

printf("%d,%f,%c\n",st.age,st.score,st.sex);

第二种:

struct Student* pst = &st;
printf("%d,%f,%c",pst->age,pst->score,pst->sex);

定义一个指针变量pst,用来存放Student数据类型的地址。

pst->age等价于(*pst).age ,也等价于st.age(pst所指向的那个结构体变量中的age这个成员)

代码

c 复制代码
/*通过函数对结构体变量的输入和输出*/	
#include <stdio.h>
#include <string.h>//strcpy使用的声明

void StudentInput(struct Student* pstu);
void StudentOutput(struct Student st);

struct Student
{
	int age;
	float score;
	char name[100];
};

int main (void)
{
	struct Student st;
	StudentInput(&st);
	StudentOutput(st);
	return 0;
}

void StudentInput(struct Student* pstu)
{
	(*pstu).age = 16;
	pstu->score = 66.4f;
	strcpy(pstu->name,"李四");
	
}

void StudentOutput(struct Student st)
{
	printf("%d,%f,%s\n",st.age,st.score,st.name);
}

ok,学到这里,我们对C语言也算有了基本的了解。其中还有很多的小细节还需要不断的学习进行丰富

相关推荐
我们的五年1 小时前
【C语言学习】:C语言补充:转义字符,<<,>>操作符,IDE
c语言·开发语言·后端·学习
siy23332 小时前
【c语言日寄】Vs调试——新手向
c语言·开发语言·学习·算法
黄交大彭于晏2 小时前
C语言常用知识结构深入学习
c语言·学习·word
可涵不会debug3 小时前
C语言文件操作:标准库与系统调用实践
linux·服务器·c语言·开发语言·c++
利刃大大5 小时前
【Linux入门】2w字详解yum、vim、gcc/g++、gdb、makefile以及进度条小程序
linux·c语言·vim·makefile·gdb·gcc
我想学LINUX6 小时前
【2024年华为OD机试】 (A卷,100分)- 微服务的集成测试(JavaScript&Java & Python&C/C++)
java·c语言·javascript·python·华为od·微服务·集成测试
雁于飞6 小时前
c语言贪吃蛇(极简版,基本能玩)
c语言·开发语言·笔记·学习·其他·课程设计·大作业
王磊鑫11 小时前
C语言小项目——通讯录
c语言·开发语言
仟濹13 小时前
【贪心算法】洛谷P1106 - 删数问题
c语言·c++·算法·贪心算法
graceyun14 小时前
C语言初阶牛客网刷题——HJ73 计算日期到天数转换【难度:简单】
c语言·开发语言