作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
class A
{
QTreeWidget Tree;
QTreeWidgetItem Item;
QTreeWidgetItem* pointer;
}
A::A()
{
...
Item = QTreeWidgetItem(&Tree); // Version 1
Item.setText(0, "Item");
pointer = new QTreeWidgetItem(&Tree); // Version 2
pointer->setText(0, "Pointer");
...
}
很抱歉没有提供完整的示例,我希望这就足够了。
版本 2 工作正常,项目显示在 GUI 的树中。版本 1 不起作用(该项目未显示)。为什么?
该对象仍然存在(即未被销毁)。
最佳答案
在版本 1 中,您通过将另一个 QTreeWidgetItem
分配给它来初始化 Item
。但是 QTreeWidgetItem
复制分配不会复制所有内容:
QTreeWidgetItem & QTreeWidgetItem::operator=(const QTreeWidgetItem & other)
Assigns other's data and flags to this item. Note that type() and treeWidget() are not copied.
关于c++ - 没有新成员的 QTreeWidgetItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35070683/
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 2年前关闭。 Improve this questi
我是一名优秀的程序员,十分优秀!