C++ 结构体struct(2)

这篇博客介绍了C++中结构体的应用,包括结构体数组的创建与遍历,以及如何通过结构体指针访问和修改结构体成员。示例代码展示了如何定义一个包含姓名、年龄和分数的`student`结构体,并创建一个`student`结构体数组,然后遍历并打印数组中的学生信息。此外,还展示了如何使用结构体指针来访问和修改结构体变量的属性。
摘要由CSDN通过智能技术生成

8.结构体

8.3 结构体数组

作用: 将自定义的结构体放入到数组中,便于维护。
语法: stuct 结构体名 数组名{元素个数} = { {}, {},…,{} }

示例代码:

#include <iostream>
using namespace std;

// 8.2结构体数组

// 1.定义结构体
struct student
{
	//成员列表
	string name; //姓名
	int age;     //年龄
	int score;   //分数
};

int main()
{
	// 2.创建结构体数组
	struct student stuArray[3] =
	{
		{"张三", 18, 100},
		{"李四", 20, 94},
		{"王五", 36, 64}
	};
		
	// 3.给结构体数组中的元素赋值
	stuArray[2].name = "王麻子"; 
	stuArray[2].age = 80;
	stuArray[2].score = 60;


	// 4.遍历结构体数组
	for (int i = 0;i < 3;i++)
	{
		cout << "姓名:" << stuArray[i].name << ";年龄:" << stuArray[i].age << ";分数:" << stuArray[i].score << endl;

	}
	system("pause");
	return 0;
}

8.4 结构体指针

作用: 通过指针访问结构体中的成员
利用操作符"->"可以通过结构体指针访问结构体属性。

#include <iostream>
using namespace std;

// 8.3结构体指针

//1.定义student结构体
struct student
{
	string name;
	int age;
	int score;
};

int main()
{
	//2.创建student结构体变量
	struct student s = { "张三", 18,100 }; //这里的struct可省略

	//3.通过指针指向结构体变量
	// int* p = &s; &s 指向结构体student
	struct student* p = &s;               //这里的struct可省略
	
    //4.通过指针访问结构体变量中的数据
	cout << "  姓名:" << p->name 
		 << ";年龄:" << p->age 
		 << ";分数:" << p->score << endl;

	system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Albot-CV

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

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

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

打赏作者

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

抵扣说明:

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

余额充值