1

问这个问题我觉得很愚蠢,因为它看起来很简单,但我不知道该怎么做,而且我在互联网上的任何地方都找不到。我正在尝试创建一个将 QList 返回到标准输出的函数,指向抽象类的指针让我感到困惑。AbstractStudent 类生成另一个Student 类的实例。这是功能:

QList<AbstractStudent*>* StudentList::returnList() const{


}
4

1 回答 1

1

存储抽象类指针的列表将能够存储指向该抽象类的任何子类的指针。

想一想:

AbstractStudent.h:

class AbstractStudent 
{
    // ...
};

学生.h:

class Student : public AbstractStudent
{
    // ...
};

任何其他类 .cpp:

QList< AbstractStudent* > studentList;

// Each of the following works:
AbstractStudent* student1 = new Student( /* ... */ );
studentList.append( student1 );

Student* student2 = new Student( /* ... */ );
studentList.append( student2 );

Student* student3 = new Student( /* ... */ );
AbstractStudent* student3_1 = student3;
studentList.append( student3 );

但是,我对您的最后一句话感到有些困惑,声称 AbstractStudent 生成学生对象。我本来期望 Student 继承 AbstractStudent 并且其他一些类生成 Student 对象,就像在我的示例中一样。

于 2013-09-20T07:12:05.757 回答