服务器之家

服务器之家 > 正文

C++结构体详解

时间:2022-01-10 15:17     来源/作者:SamRol

一、结构体的定义

?
1
2
3
4
5
6
struct Student
{
    string name;
    int age;
    int score;
};

二、创建具体的变量(3种)

?
1
2
3
4
struct Student s1;
s1.name = "张三";
s1.age = 18;
s1.score = 90;
?
1
struct Student s1 = {"李四" ,19 , 80 };
?
1
2
3
4
5
6
7
8
9
struct Student
{
    string name;
    int age;
    int score;
}s3;
s3.name = "王五";
s3.age = 18;
s3.score = 89;

三、结构体数组

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct Student stuArray[3] =
{
    {"张三" , 20 , 92},
    {"李四" , 18 , 89},
    {"王五" , 24 , 95}
};
stuArray[2].name = "赵六";// 把王五改为赵六
//遍历结构体数组
for(int i =0; i < 3;i++)
{
    cout << "姓名:" << stuArray[i].name
         << "年龄:" << stuArray[i].age
         << "分数:" << stuArray[i].score <<endl;
}

四、结构体指针

利用操作符-> 可以通过结构体指针访问结构体属性。

?
1
2
3
4
struct Student s = {"张三", 18, 90};
struct Student *p = &s;
//通过指针访问结构体变量中的数据
cout << "姓名:" << p->name << endl;

五、结构体嵌套结构体

?
1
2
3
4
5
6
7
8
9
10
11
12
13
struct student
{
    String name;
    int age;
    int score;
}
struct teacher
{
    int id;
    String name;
    int age;
    struct student stu;
}
?
1
2
teacher t;
t.stu.name;

六、结构体做函数参数

1、值传递

?
1
2
3
4
5
6
7
8
9
10
11
void printStudent(struct Student s1)
{
    cout << "姓名:" <<s1.name << "年龄:" << s1.age << "分数" << s1.score;
}
int main(){
    struct Student s1;
    s1.name = "张三";
    s1.age = 18;
    s1.score = 95;
    printStudent(s1);
}

2、地址传递

?
1
2
3
4
5
6
7
8
9
10
11
void printStudent(struct Student * s1)
{
    cout << "姓名:" << p->name << "年龄:" << p->age << "分数" << p->score;
}
int main(){
    struct Student s1;
    s1.name = "张三";
    s1.age = 18;
    s1.score = 95;
    printStudent(&s1);
}

七、结构体中const使用场景

?
1
2
3
4
5
6
7
8
9
10
11
void printStudent(const Student * s1)
{
    cout << "姓名:" << p->name << "年龄:" << p->age << "分数" << p->score;
}
int main(){
    struct Student s1;
    s1.name = "张三";
    s1.age = 18;
    s1.score = 95;
    printStudent(&s1);
}

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注服务器之家的更多内容!

原文链接:https://blog.csdn.net/qq_26082507/article/details/120396912

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部