我正在尝试制作一个复制赋值运算符。但它不起作用。问题是什么? 有没有其他方法来编写复制赋值运算符?
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;
}
}
我该怎么办?
答案 0 :(得分:1)
你没有将k初始化为任何东西,所以course [k]可以作为任何地方的引用。基本类型不是在c ++中默认初始化的。