鱼C论坛

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

我想给指针数组赋值

[复制链接]
发表于 2020-5-23 21:56:25 | 显示全部楼层 |阅读模式

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

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

x
#include<iostream>
using namespace std;
class CCourse
{
        string name;
        int creditHour;
public:
        void setname(string x)
        {name = x;}
        string getname()
        {return name;}
        void setcreditHour(int x)
        {creditHour = x;}
        int getcreditHour()
        {return creditHour;}
};
class CStudent
{
public:
        CStudent(int courseNumber,string name,int birthmonth,int birthday)
        {
                this->courseNumber = courseNumber<=10?courseNumber:10;
                this->name = name;
                this->birthday = birthday;
                this->birthmonth = birthmonth;
        }
        void set(int x,string coursename,int credit)                《-----------------------------------这里出的问题
        {
                courseList[x]->setname(coursename);
                courseList[x]->setcreditHour(credit);
        }
private:
        CCourse* courseList[10];
        int courseNumber;
        string name;
        int birthmonth;
        int birthday;
};
int main()
{
        CStudent p(4, "张三", 1, 1);
        p.set(0, "高数", 4);            《--------------------------------------这里出的问题
        p.set(1, "c++", 4);
        p.set(2, "线性代数", 3);
        p.set(3, "大学英语", 3);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-5-23 22:45:55 | 显示全部楼层
只要在构造函数里初始化一下指针数组就行了
for (int i = 0; i <= 9; i++)
{
        courseList[i] = new CCourse();
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-13 19:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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