C++笔记:struct结构体 c++结构体使用
yuyutoo 2024-10-12 00:45 3 浏览 0 评论
8.1 结构体基本概念
结构体属于用户自定义的数据类型,允许用户存储不同的数据类型
8.2 结构体的定义与使用
struct 结构体名 {结构成员列表};
- struct 结构体名 变量名
#include<iostream>
using namespace std;
#include<string>
//struct 类型名称 {成员列表}
struct Student
{
//成员具体信息
string name;
int age;
int score;
};
//通过学生类型创建具体学生
int main()
{
struct Student s1;
//给s属性赋值,访问结构体变量中的属性
s1.name = "张三";
s1.age = 18;
s1.score = 100;
cout << "姓名:" << s1.name << endl;
cout << "年龄:" << s1.age << endl;
cout << "分数:" << s1.score << endl;
return 0;
}
- struct 结构体名 变量名 = {成员1值,成员2值}
#include<iostream>
using namespace std;
#include<string>
//struct 类型名称 {成员列表}
struct Student
{
//成员具体信息
string name;
int age;
int score;
}s1;
//创建时顺便创建结构体变量
//通过学生类型创建具体学生
int main()
{
struct Student s1 = { "李四",19,110 };//struct 可省略,
cout << "姓名:" << s1.name << endl;
cout << "年龄:" << s1.age << endl;
cout << "分数:" << s1.score << endl;
return 0;
};
- 定义结构体时顺便创建变量(不推荐)
#include<iostream>
using namespace std;
#include<string>
//struct 类型名称 {成员列表}
struct Student
{
//成员具体信息
string name;
int age;
int score;
}s1;
//创建时顺便创建结构体变量
//通过学生类型创建具体学生
int main()
{
s1.name = "王五";
s1.age = 20;
s1.score = 120;
cout << "姓名:" << s1.name << endl;
cout << "年龄:" << s1.age << endl;
cout << "分数:" << s1.score << endl;
return 0;
};
用.来访问结构体变量中的值
8.3 结构体数组
将自定义的结构体放入数组中方便维护
#include<iostream>
using namespace std;
struct student
{
string name;
int age;
};
int main()
{
struct student arr[3] =
{
{"张三",18},
{"李四",19},
{"王五",20}
};
//给其中的元素赋值
arr[1].age = 20;
arr[1].name = "赵六";
//输出结果
for (int i = 0; i < 3; i++)
{
cout << "姓名:" << arr[i].name << " 年龄: " << arr[i].age << endl;
}
return 0;
}
8.4 结构体指针
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
int main()
{
struct student s = { "张三",18,100 };
struct student* p = &s;//通过指针指向结构体变量
cout << " 姓名 " << p->name
<< " 年龄 " << p->age
<< " 分数 " << p->score << endl;
cout << " 姓名 " << s.name
<< " 年龄 " << s.age
<< " 分数 " << s.score << endl;
//上面的两个输出语句等价
return 0;
}
8.5 结构体嵌套结构体
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
struct teacher
{
int id;
string name;
int age;
struct student std;//student结构体要先定义
};
int main()
{
struct teacher t;
t.id = 1000;
t.name = "老王";
t.age = 50;
t.std.name = "小王";//通过teacher结构体继续控制student结构体
t.std.age = 18;
t.std.score = 100;
cout << "老师姓名:" << t.name << endl
<< "老师编号: " << t.id << endl
<< "老师年龄: " << t.age << endl
<< "老师辅导学生的姓名: " << t.std.name << endl
<< "老师辅导学生的年龄: " << t.std.age << endl
<< "老师辅导学生的分数: " << t.std.score << endl;
return 0;
}
也可以在变量t的中括号内依次输入
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
struct teacher
{
int id;
string name;
int age;
struct student std;//student结构体要先定义
};
int main()
{
struct teacher t {10,"老李",50,"小李",19,110 };
//t.id = 1000;
//t.name = "老王";
//t.age = 50;
//t.std.name = "小王";//通过teacher结构体继续控制student结构体
//t.std.age = 18;
//t.std.score = 100;
cout << "老师姓名:" << t.name << endl
<< "老师编号: " << t.id << endl
<< "老师年龄: " << t.age << endl
<< "老师辅导学生的姓名: " << t.std.name << endl
<< "老师辅导学生的年龄: " << t.std.age << endl
<< "老师辅导学生的分数: " << t.std.score << endl;
return 0;
}
8.6 结构体做函数参数
值传递
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
void p(struct student s)
{
cout << "姓名:" << s.name
<< " 年龄:" << s.age
<< " 分数:" << s.score << endl;
}
int main()
{
struct student s = { "张三",18,100 };
p(s);
return 0;
}
地址传递
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
void p(struct student* s)
{
s->age = 200;
cout << "姓名:" << s->name
<< " 年龄:" << s->age
<< " 分数:" << s->score << endl;//调用指针用箭头
}
int main()
{
struct student s = { "张三",18,100 };
p(&s);
cout << "main函数中张三的年龄:" << s.age << endl;
return 0;
}
地址传递的情况下形参改变会影响实际参数,而值传递不会
8.7 结构体中const的使用场景
目的:用const防止误操作
#include<iostream>
using namespace std;
#include<string>
struct student
{
string name;
int age;
int score;
};
void p(const struct student *s)//在最前面加上const
{
s->age = 1;//报错,防止出现误操作
cout << "姓名:" << s->name
<< " 年龄:" << s->age
<< " 分数:" << s->score << endl;
}
int main()
{
struct student s = { "张三",18,100 };
p(&s);//用指针访问可以减少内存的使用
return 0;
}
相关推荐
- jQuery VS AngularJS 你更钟爱哪个?
-
在这一次的Web开发教程中,我会尽力解答有关于jQuery和AngularJS的两个非常常见的问题,即jQuery和AngularJS之间的区别是什么?也就是说jQueryVSAngularJS?...
- Jquery实时校验,指定长度的「负小数」,小数位未满末尾补0
-
在可以输入【负小数】的输入框获取到焦点时,移除千位分隔符,在输入数据时,实时校验输入内容是否正确,失去焦点后,添加千位分隔符格式化数字。同时小数位未满时末尾补0。HTML代码...
- 如何在pbootCMS前台调用自定义表单?pbootCMS自定义调用代码示例
-
要在pbootCMS前台调用自定义表单,您需要在后台创建表单并为其添加字段,然后在前台模板文件中添加相关代码,如提交按钮和表单验证代码。您还可以自定义表单数据的存储位置、添加文件上传字段、日期选择器、...
- 编程技巧:Jquery实时验证,指定长度的「负小数」
-
为了保障【负小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【负小数】的方法。HTML代码<inputtype="text"class="forc...
- 一篇文章带你用jquery mobile设计颜色拾取器
-
【一、项目背景】现实生活中,我们经常会遇到配色的问题,这个时候去百度一下RGB表。而RGB表只提供相对于的颜色的RGB值而没有可以验证的模块。我们可以通过jquerymobile去设计颜色的拾取器...
- 编程技巧:Jquery实时验证,指定长度的「正小数」
-
为了保障【正小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【正小数】的方法。HTML做成方法<inputtype="text"class="fo...
- jquery.validate检查数组全部验证
-
问题:html中有多个name[],每个参数都要进行验证是否为空,这个时候直接用required:true话,不能全部验证,只要这个数组中有一个有值就可以通过的。解决方法使用addmethod...
- Vue进阶(幺叁肆):npm查看包版本信息
-
第一种方式npmviewjqueryversions这种方式可以查看npm服务器上所有的...
- layui中使用lay-verify进行条件校验
-
一、layui的校验很简单,主要有以下步骤:1.在form表单内加上class="layui-form"2.在提交按钮上加上lay-submit3.在想要校验的标签,加上lay-...
- jQuery是什么?如何使用? jquery是什么功能组件
-
jQuery于2006年1月由JohnResig在BarCampNYC首次发布。它目前由TimmyWilson领导,并由一组开发人员维护。jQuery是一个JavaScript库,它简化了客户...
- django框架的表单form的理解和用法-9
-
表单呈现...
- jquery对上传文件的检测判断 jquery实现文件上传
-
总体思路:在前端使用jquery对上传文件做部分初步的判断,验证通过的文件利用ajaxFileUpload上传到服务器端,并将文件的存储路径保存到数据库。<asp:FileUploadI...
- Nodejs之MEAN栈开发(四)-- form验证及图片上传
-
这一节增加推荐图书的提交和删除功能,来学习node的form提交以及node的图片上传功能。开始之前需要源码同学可以先在git上fork:https://github.com/stoneniqiu/R...
- 大数据开发基础之JAVA jquery 大数据java实战
-
上一篇我们讲解了JAVAscript的基础知识、特点及基本语法以及组成及基本用途,本期就给大家带来了JAVAweb的第二个知识点jquery,大数据开发基础之JAVAjquery,这是本篇文章的主要...
- 推荐四个开源的jQuery可视化表单设计器
-
jquery开源在线表单拖拉设计器formBuilder(推荐)jQueryformBuilder是一个开源的WEB在线html表单设计器,开发人员可以通过拖拉实现一个可视化的表单。支持表单常用控件...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- mybatis plus (70)
- scheduledtask (71)
- css滚动条 (60)
- java学生成绩管理系统 (59)
- 结构体数组 (69)
- databasemetadata (64)
- javastatic (68)
- jsp实用教程 (53)
- fontawesome (57)
- widget开发 (57)
- vb net教程 (62)
- hibernate 教程 (63)
- case语句 (57)
- svn连接 (74)
- directoryindex (69)
- session timeout (58)
- textbox换行 (67)
- extension_dir (64)
- linearlayout (58)
- vba高级教程 (75)
- iframe用法 (58)
- sqlparameter (59)
- trim函数 (59)
- flex布局 (63)
- contextloaderlistener (56)