首页 > 编程语言 > 详细

C++结构体作为函数参数传参

时间:2021-06-22 09:15:52      阅读:21      评论:0      收藏:0      [点我收藏+]
#include<iostream>
using namespace std;
 
#include<string>
 
 
//结构体
struct Student {
 
	string name;
	int age;
	int score;
 
}st3;
 
 
/*
 *结构体作为函数参数传参
 */
//值传递
void printStufdent1(struct Student st3) {
	cout << "子函数" << endl;
	st3.age = 100;
 
	cout << "名字:" << st3.name << "	年龄:" << st3.age << "	分数:" << st3.score << endl;
 
}
//地址传递
void printStufdent2(struct Student * p) {
	p->age = 200;
	cout << "子函数" << endl;
	cout << "名字:" << p->name << "	年龄:" << p->age << "	分数:" << p->score << endl;
 
}
 
 
int main() {
 
	struct Student st1;
	st1.name = "zhangsan";
	st1.age = 18;
	st1.score = 60;
	//cout << "名字" << st1.name << "年龄" << st1.age << "分数" << st1.score<< endl;
	struct Student st2={"李四",20,70};
//	cout << "名字" << st2.name << "年龄" << st2.age << "分数" << st2.score<< endl;
	
	
	st3.name = "王五";
	st3.age = 19;
	st3.score = 59;
 
	printStufdent1(st3);
	cout << "main函数" << endl;
	cout << "名字:" << st3.name << "	年龄:" << st3.age << "	分数:" << st3.score << endl;
 
	printStufdent2(&st3);
	cout << "main函数" << endl;
	cout << "名字:" << st3.name << "	年龄:" << st3.age << "	分数:" << st3.score << endl;
 
	system("pause");
 }

技术分享图片

从结果我们知道结构体作为函数的参数传参有两种形式?

?

?

?

C++结构体作为函数参数传参

原文:https://blog.51cto.com/u_15174292/2935216

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!