gpt4 book ai didi

c++ - 从QAbstractItemModel正确删除子树

转载 作者:行者123 更新时间:2023-12-02 07:30:41 24 4
gpt4 key购买 nike

对我来说,尚不清楚从QAbstractItemModel派生的自定义模型类中删除分支的正确方法是什么。我有一种方法应该刷新树节点(删除所有子分支并插入新的子分支)。

void SessionTreeModel::refresh(const QModelIndex &index, const DbObjectI *object)
{
auto item = getItem(index);

assert(item != nullptr);

if (item != nullptr)
{
if (item->childCount() > 0)
{
beginRemoveRows(index, 0, item->childCount() - 1);

item->removeAll();

endRemoveRows();
}

if (object != nullptr && object->getChildCount() > 0)
{
beginInsertRows(index, 0, static_cast<int>(object->getChildCount()) - 1);

item->appendChildren(object);

endInsertRows();
}
}
}
void SessionTreeItem::removeAll()
{
for (auto& child : childItems_)
{
child->removeAll();
}

childItems_.clear();
}

问题是,在调用“beginRemoveRows()”后,几次刷新后应用程序通常会崩溃,并且根据调用堆栈,问题在于使用包含悬空内部指针的索引调用了SessionTreeModel::parent()。
QModelIndex SessionTreeModel::parent(const QModelIndex &child) const
{
if (child.isValid())
{
auto childItem = getItem(child);

auto parentItem = childItem->parent();

if (parentItem != nullptr &&
parentItem != rootObject_.get())
{
return createIndex(static_cast<int>(parentItem->childCount()),
0, parentItem);
}
}

return QModelIndex{};
}

看起来树 View 正在为已被删除并试图获取其父项的项保留索引。

您能否告知可能出什么问题?

最佳答案

首先,我要感谢谢夫的评论。我很高兴我不必朝这个方向走;)

经过数小时的研究,我终于找到了问题。确实是个愚蠢的人!在parent()方法中,使用parentItem-> childCount()而不是parentItem-> row()创建索引。

关于c++ - 从QAbstractItemModel正确删除子树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61751052/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com