标题:对象指针出现的问题
只看楼主
qq68677589
Rank: 1
来 自:天津市
等 级:新手上路
帖 子:18
专家分:5
注 册:2019-11-6
结帖率:71.43%
已结贴  问题点数:3 回复次数:1 
对象指针出现的问题
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
class Sstudent
{
public:
    //创建数据成员
    const char* name;
    int number;
    int age;
    float score;
    //创建成员函数
    void print()
    {
        cout << name << endl;
        cout << number << endl;
        cout << age << endl;
        cout << score << endl;
    }
};
int main()
{
    //创建对象
    Student *pStu = new Student;
    pStu->name = "小明";
    pStu->number = 6019203034;
    pStu->age = 22;
    pStu->score = 66.4;
    pStu->print();
    delete pStu;
    return 0;
}

为什么会出现这种情况呢?求解!
搜索更多相关主题的帖子: 对象 name number 出现 cout 
2020-05-09 08:41
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:507
帖 子:8890
专家分:53117
注 册:2011-1-18
得分:3 
这种错误,完全与编程无关,你应该去配个眼镜。

既然编译器说 Student 没定义,那你就应该去你定义它的地方检查一下,看看 Sstudent 和 Student 有什么不同。
2020-05-09 09:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-501502-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054873 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved