摘要:
1.定义结构体 1 //定义学生结构体 2 struct Student 3 { 4 string name; 5 int age; 6 int score; 7 }; 2.定义时赋值 1 int main(void) 2 { 3 //方法一:定义时赋值 4 struct Student s = { 阅读全文
摘要:
作用:将结构体作为参数向函数中传递 传递方式有三种: 1.值传递:形参的改变,不会影响实参的值。(C/C++) 2.地址传递:。(C/C++) 3.引用:真正的以地址的方式传递参数,传递以后,行参和实参都是同一个对象,只是它们名字不同而已,对行参的修改将影响实参的值。(C++) ********** 阅读全文
摘要:
作用:结构体中的成员可以是另一个结构体 例如:每个老师辅导一个成员,一个老师的结构体中,记录另一个学生的结构体 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 //定义学生结构体 6 struct Studen 阅读全文
摘要:
作用:通过指针访问结构体中的成员。 利用操作符->可以通过结构体指针访问结构体属性。 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 //1.定义结构体 6 struct Student 7 { 8 strin 阅读全文