我试图动态分配基类(学生)的数组,然后将指向派生类的指针分配给每个数组插槽。通过创建指向基类的单个指针,然后将其分配给派生类,我可以使其工作,但是当我尝试将指针分配给动态分配的基类数组时,它会失败。我在下面发布了我正在使用的代码片段。所以基本上我的问题是,为什么动态分配的一个不起作用?

   Student* studentList = new Student[numStudents];
   Math* temp = new Math(name, l, c, q, t1, t2, f);
   studentList[0] = temp;

/*Fragment Above Gives Error:

main.cpp: In function âint main()â:
main.cpp:55: error: no match for âoperator=â in â* studentList = tempâ
grades.h:13: note: candidates are: Student& Student::operator=(const Student&)*/



   Student * testptr;
   Math * temp = new Math(name, l, c, q, t1, t2, f);
   testptr = temp
   //Works

最佳答案

studentList[0]不是指针(即Student *),而是对象(即Student)。

听起来有点像您需要的是一个指针数组。在这种情况下,您应该执行以下操作:

Student **studentList = new Student *[numStudents];
Math *temp = new Math(name, l, c, q, t1, t2, f);
studentList[0] = temp;


在此代码段中,studentList的类型为Student **。因此,studentList[0]的类型为Student *

(请注意,在C ++中,有更好,更安全的方法来执行此操作,涉及容器类和智能指针。但是,这超出了问题的范围。)

10-08 08:29