Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用模型存储自定义数据。为此,对于选择哪个项目模型进行子类化有点困惑。我需要澄清一下,哪个是子类化的最佳模型?而且我还需要 QAbstractItemModel 优于 QStandardItemModel 的优势吗?
谢谢!
这取决于您的需求。如果QStandardItemModel您只想存储自定义数据并且不想编写自己的模型逻辑,请使用。这是通用的,您可以将其用于自定义数据而无需子类化。
QStandardItemModel
另一方面,如果您想编写自己的模型逻辑,请选择QAbstractItemModel. 它是抽象类。这意味着,它没有实现任何行为,它只是一个“接口”。它告诉您您的模型应该实现哪些方法,因此它可以用作 Qt 中的另一个 ItemModel 类。
QAbstractItemModel