复制分配运算符错误

Copy assignment operator error

本文关键字:错误 运算符 分配 复制      更新时间:2023-10-16

我正在尝试创建一个复制赋值运算符。但它不起作用。问题出在哪里?有没有其他方法可以编写复制赋值运算符?

Course&  Course::operator= ( const Course &that)
{
    if (this != &that)
    {
        courseId = that.courseId; // in this line I'm getting run-time error.
        courseName = that.courseName;
        gradeFormLength = that.gradeFormLength;
        studentsLength = that.studentsLength;
        delete[] gradeForms;
        gradeForms = new GradeForm[that.gradeFormLength];
        for(int i = 0; i < that.gradeFormLength; i++)
        {
            gradeForms[i] = that.gradeForms[i];
        }
        delete[] students;
        students = new Student[studentsLength];
        for(int i = 0; i < that.studentsLength; i++)
        {
            students[i] = that.students[i];
        }
    }
    return *this;
}

这就是调用=运算符的地方。

void StudentReviewSystem::deleteCourse(const int courseId)
{
    int index = findCourse(courseId);
    if(index != -1)
    {
        int newNum = numberOfCourses-1;
        Course *newCourses = new Course[newNum];
        int k;
        for(int j = 0; j < newNum; j++)
        {
            if(courses[j].getId() == courseId)
                k++;
            newCourses[j] = courses[k]; // <<< there
            k++;
        }
        delete[] courses;
        courses = newCourses;
        numberOfCourses = newNum;
        cout<< "Course "<< courseId <<" has been deleted."<< endl;
    }
    else
    {
        cout<< "Course "<< courseId <<" doesn't exist."<< endl;
    }
 }

我该怎么办?

您不将k初始化为任何内容,因此courses[k]可以是对任何位置的引用。基本类型不是在c++中默认初始化的。