6.3重学C++之【结构体指针】

#include<iostream>
#include<string>
using namespace std;


/*
    结构体指针
    可以通过操作符'->'访问结构体中的成员(属性)
*/


struct Student{
    string name;
    int age;
    int score;
};


int main(){
    struct Student s = {"张三", 18, 100}; // struct可以省略
    struct Student * p = &s; // struct可以省略
    cout << "姓名:" << p->name << ",年龄:" << p->age << ",分数:" << p->score << endl;
    return 0;
}

posted @ 2021-03-11 12:04  yub4by  阅读(21)  评论(0编辑  收藏  举报