鱼C论坛

 找回密码
 立即注册
查看: 748|回复: 1

[已解决]以下代码中,使用Devc++怎么让cout的p后面跟一个箭头指向name age score

[复制链接]
发表于 2023-10-23 21:18:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
#include<string>
using namespace std;
struct student
{
        string name;
        int age;
        int score;
};
int main()
{
        struct student s={"张三",18,60};
        struct student*p=&s;
        cout<<"姓名:"<<p<<"年龄:"<<p<<"成绩:"<<p<<endl;
        return 0;
}
最佳答案
2023-10-23 21:18:54
可以使用指针来访问结构体成员,并且使用箭头符号 -> 来访问结构体指针的成员。以下是修改后的代码:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. struct student
  5. {
  6.         string name;
  7.         int age;
  8.         int score;
  9. };
  10. int main()
  11. {
  12.         struct student s={"张三",18,60};
  13.         struct student* p=&s;
  14.         cout<<"姓名:"<<p->name<<" 年龄:"<<p->age<<" 成绩:"<<p->score<<endl;
  15.         return 0;
  16. }
复制代码


在这个程序中,我们定义了一个指向结构体 student 的指针 p,并将其指向结构体变量 s。然后,我们使用箭头符号 -> 来访问结构体指针 p 的成员变量 name、age 和 score,分别输出它们的值。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-10-23 21:18:54 | 显示全部楼层    本楼为最佳答案   
可以使用指针来访问结构体成员,并且使用箭头符号 -> 来访问结构体指针的成员。以下是修改后的代码:

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. struct student
  5. {
  6.         string name;
  7.         int age;
  8.         int score;
  9. };
  10. int main()
  11. {
  12.         struct student s={"张三",18,60};
  13.         struct student* p=&s;
  14.         cout<<"姓名:"<<p->name<<" 年龄:"<<p->age<<" 成绩:"<<p->score<<endl;
  15.         return 0;
  16. }
复制代码


在这个程序中,我们定义了一个指向结构体 student 的指针 p,并将其指向结构体变量 s。然后,我们使用箭头符号 -> 来访问结构体指针 p 的成员变量 name、age 和 score,分别输出它们的值。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-20 12:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表