CH08_结构体


基本概念

结构体属于用户自定义数据类型,允许用户存储不同的数据类型。

定义和使用

语法:struct 结构体名{ 结构体成员列表}

通过结构体创建变量的方式有三种:

  • struct 结构体名 变量名
  • struct 结构体名 变量名=
  • 定义结构体时顺便创建变量

示例:

#include<iostream>
using namespace std; //定义结构
struct Student
{
string name;
int age;
string sex;
} s3; int main() { //方式1(struct可省略)
//struct Student s1;
Student s1;
s1.name = "张三";
s1.age = 19;
s1.sex = "男"; cout << "姓名:" << s1.name << "年龄:" << s1.age << "性别:" << s1.sex << endl;; //方式2(struct可省略)
//struct Student s2 = { "李四",20,"女" };
Student s2 = {"李四",20,"女"};
cout << "姓名:" << s2.name << "年龄:" << s2.age << "性别:" << s2.sex<<endl; //方式3
s3.name = "王五";
s3.age = 21;
s3.sex = "男";
cout << "姓名:" << s3.name << "年龄:" << s3.age << "性别:" << s3.sex<<endl; system("pause");
return 0;
}

结构体数组

作用:将自定义的结构体放入到数组中方便维护

语法:struct 结构体名 数组名[元素个数]={{},{},{},..}

示例:

#include<iostream>
using namespace std; //定义结构
struct Student
{
string name;
int age;
string sex;
}; int main() { //结构体数组
Student stus[3] =
{
{"张三",18,"男"},
{"李四",20,"男"},
{"王五",22,"女"}
}; //修改数组中的元素
stus[2].name = "赵六";
stus[2].sex = "男"; //遍历数组
for (int i = 0; i < 3; i++) {
cout << "姓名:" << stus[i].name << endl;
cout << "年龄:" << stus[i].age << endl;
cout << "性别:" << stus[i].sex << endl;
cout << "------------------------" << endl;
} system("pause");
return 0;
}

结构体指针

作用:通过指针访问结构中的成员

语法:结构体 ->成员

示例:

#include<iostream>
using namespace std; //定义结构
struct Student
{
string name;
int age;
string sex;
}; int main() { //创建学生结构对象
Student stu = {"张三",18,"男"}; //创建结构类型指针
Student* p = &stu; //通过指针访问结构中的属性
//p->name
cout << "姓名:" << p->name << endl;
cout << "年龄:" << p->age << endl;
cout << "性别:" << p->sex << endl; cout << "姓名:" << (*p).name << endl; system("pause");
return 0;
}

结构体嵌套

作用:结构体中的成员可以是另外一个结构体

示例:

#include<iostream>
using namespace std; //定义学生结构
struct Student
{
string name; //姓名
int age; //年龄
string sex; //性别
}; //定义小组结构
struct Group {
string groupNmae;//组名
Student stus[3]; //学生结构数组
}; int main() { Group g = { "一组",
{
{"张三",18,"男"},
{"李四",20,"男"},
{"王五",22,"女"}
}
}; cout << "组名:" << g.groupNmae << endl;
for (int i = 0; i < 3; i++) {
cout << "------------------------------" << endl;
cout << "姓名:" << g.stus[i].name << endl;
cout << "年龄:" << g.stus[i].age << endl;
cout << "性别:" << g.stus[i].sex << endl; } system("pause");
return 0;
}

结构体做函数的参数

作用:将结构体作为参数向函数中传递。

传递方式:

值传递

地址传递

示例:

#include<iostream>
using namespace std; //定义学生结构
struct Student
{
string name; //姓名
int age; //年龄
string sex; //性别
}; //值传递
void fun1(Student stu) {
stu.age = 100;
cout << "姓名:" << stu.name << "年龄:" << stu.age << "性别:" << stu.sex << endl; } //引用传递
void fun2(Student* stu) {
stu->age = 100;
cout << "姓名:" << stu->name << "年龄:" << stu->age << "性别:" << stu->sex << endl; } int main() { Student stu = { "张三",20,"男" }; //值传递
//fun1(stu); //引用传递
fun2(&stu); cout << "姓名:" << stu.name << "年龄:" << stu.age << "性别:" << stu.sex << endl; system("pause");
return 0;
}

结构体中const使用场景

作用:在引用方式传递时,用const来防止误操作。(引用方式传递节约内存空间)。

示例:

#include<iostream>
using namespace std; //定义学生结构
struct Student
{
string name; //姓名
int age; //年龄
string sex; //性别
}; //引用传递
void fun2(const Student* stu) {
//stu->age = 100; //报错:禁止更改
cout << "姓名:" << stu->name << "年龄:" << stu->age << "性别:" << stu->sex << endl; } int main() { Student stu = { "张三",20,"男" }; //引用传递
fun2(&stu); cout << "姓名:" << stu.name << "年龄:" << stu.age << "性别:" << stu.sex << endl; system("pause");
return 0;
}

CH08_结构体的更多相关文章

  1. Go结构体实现类似成员函数机制

    Go语言结构体成员能否是函数,从而实现类似类的成员函数的机制呢?答案是肯定的. package main import "fmt" type stru struct { testf ...

  2. C#基础回顾(二)—页面值传递、重载与重写、类与结构体、装箱与拆箱

    一.前言 -孤独的路上有梦想作伴,乘风破浪- 二.页面值传递 (1)C#各页面之间可以进行数据的交换和传递,页面之间可根据获取的数据,进行各自的操作(跳转.计算等操作).为了实现多种方式的数据传递,C ...

  3. go语言结构体

    定义: 是一种聚合的数据类型,是由零个或多个任意类型的值聚合成的实体. 成员: 每个值称为结构体的成员. 示例: 用结构体的经典案例处理公司的员工信息,每个员工信息包含一个唯一的员工编号.员工的名字. ...

  4. C语言中的结构体

    用户自己建立自己的结构体类型 1.  定义和使用结构体变量 (1).结构体的定义 C语言允许用户自己建立由不同类型数据组成的组合型的数据结构,它称为结构体. (2).声明一个结构体类型的一般形式为: ...

  5. C++_系列自学课程_第_12_课_结构体

    #include <iostream> #include <string> using namespace std; struct CDAccount { double bal ...

  6. java socket传送一个结构体给用C++编写的服务器解析的问题

    另一端是Java写客户端程序,两者之间需要通信.c++/c接收和发送的都是结构体,而Java是直接发送的字节流或者byte 数组.解决方法:c++/c socket 在发送结构体的时候其实发送的也是字 ...

  7. swift学习笔记3——类、结构体、枚举

    之前学习swift时的个人笔记,根据github:the-swift-programming-language-in-chinese学习.总结,将重要的内容提取,加以理解后整理为学习笔记,方便以后查询 ...

  8. HDOJ 1009. Fat Mouse' Trade 贪心 结构体排序

    FatMouse' Trade Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  9. C语言结构体对齐

    1.结构体变量中的元素如何访问? (1)数组中元素的访问方式:表面上有2种方式(数组下标方式和指针方式):实质上都是指针方式访问.(2)结构体变量中的元素访问方式:只有一种,用.或者->的方式来 ...

  10. C与指针(结构体指针,函数指针,数组指针,指针数组)定义与使用

    类型 普通指针 指针数组(非指针类型) 数组指针 结构体指针 函数指针 二重指针 定义方式 int *p; int *p[5]; int (*p)[5]; int a[3][5]; struct{.. ...

随机推荐

  1. 纯代码搭建iOS三级结构(UITabbarController+UINavigationController+UIViewController)

    声明:这里所指的三级结构不是网上百度中所经常提及的三级框架或者MVC模式,而是指UITabbarController+UINavigationController+UIViewController. ...

  2. 慕课DJANGO配置

    重写内置的错误处理视图 在项目urls.py中添加配置 handler500 = "app01.views.page_500" handler404 = "app01.v ...

  3. nginx 反向代理(proxy)与负载均衡(upstream)应用实践

    集群介绍 集群就是指一组(若干个)相互独立的计算机,利用高速通信网络组成的一个较大的计算机服务系统,每个集群节点(即集群中的每台计算机)都是运行各自服务的独立服务器.这些服务器之间可以彼此通信,协同向 ...

  4. Android/SELinux 添加 AVC 权限

    Android/SELinux 添加 AVC 权限 背景 在Android应用层中编写c/c++应用时,发现接口调用出现问题,logcat才知道是因为:权限不够. type=1400 audit(0. ...

  5. 在win10上安装MTK驱动(附驱动下载链接)

    参考:https://www.cnblogs.com/keepgoing707/p/4926171.html 背景 在调试MTK平台MT67XX的时候,发现安装preloader驱动装不上. 第三方i ...

  6. 背包dp——01背包

    01背包是背包dp的基础的重点,重点的基础!!! 题意概要:有 n 个物品和一个容量为 W 的背包,每个物品有重量 w_{i} 和价值 v_{i} 两种属性,要求选若干物品放入背包使背包中物品的总价值 ...

  7. .Net Core 2.2 Areas 路由,第一个MapAreaRoute 设置匹配多个Controller

    .h2 { background-color: rgba(78, 110, 242, 1); color: rgba(255, 255, 255, 1); padding: 10px } 在.Net ...

  8. SpringBoot学习篇

    什么是SpringBoot?为什么要用SpringBoot 用来简化spring应用的初始搭建以及开发过程 使用特定的方式来进行配置(properties或yml文件) 创建独立的spring引用程序 ...

  9. FairMOT复现报错存档

    FairMOT复现 使用pip命令单独安装Cython包即可 修改下载的cython-bbox包里的setup.py里的代码 将#extra_compile_args=['-Wno-cpp'], 修改 ...

  10. 从DDPM到DDIM (一) 极大似然估计与证据下界

    从DDPM到DDIM (一) 极大似然估计与证据下界   现在网络上关于DDPM和DDIM的讲解有很多,但无论什么样的讲解,都不如自己推到一遍来的痛快.笔者希望就这篇文章,从头到尾对扩散模型做一次完整 ...