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语言也算有了基本的了解。其中还有很多的小细节还需要不断的学习进行丰富

相关推荐
码农不惑5 小时前
2025.06.27-14.44 C语言开发:Onvif(二)
c语言·开发语言
凌肖战7 小时前
力扣网C语言编程题:在数组中查找目标值位置之二分查找法
c语言·算法·leetcode
BreezeJuvenile7 小时前
数据结构与算法分析课设:一元多项式求值
c语言·课程设计·数据结构与算法分析·一元多项式计算
悲伤小伞8 小时前
linux_git的使用
linux·c语言·c++·git
气质、小青年!9 小时前
【排序算法】
c语言·数据结构
智者知已应修善业10 小时前
【51单片机节日彩灯控制器设计】2022-6-11
c语言·经验分享·笔记·单片机·嵌入式硬件·51单片机
开-悟10 小时前
嵌入式编程-使用AI查找BUG的启发
c语言·人工智能·嵌入式硬件·bug
Natsume171015 小时前
嵌入式开发:GPIO、UART、SPI、I2C 驱动开发详解与实战案例
c语言·驱动开发·stm32·嵌入式硬件·mcu·架构·github
shaun200116 小时前
华为c编程规范
c语言
MeshddY16 小时前
(超详细)数据库项目初体验:使用C语言连接数据库完成短地址服务(本地运行版)
c语言·数据库·单片机