当前位置: 编程技术>c/c++/嵌入式
结构体类型数据作为函数参数(三种方法)
来源: 互联网 发布时间:2014-10-21
本文导语: (1)用结构体变量名作为参数。 代码如下:#include#includeusing namespace std;struct Student{ string name; int score; };int main(){ Student one; void Print(Student one); one.name="千手"; one.score=99; Print(one); cout
(1)用结构体变量名作为参数。
代码如下:
#include
#include
using namespace std;
struct Student{
string name;
int score;
};
int main(){
Student one;
void Print(Student one);
one.name="千手";
one.score=99;
Print(one);
cout