QAction 的所有权

发布于 2024-12-25 13:12:40 字数 470 浏览 0 评论 0原文

将 QAction* 添加到 QMenu 时,谁负责删除 QAction* 对象?我在 QMenu 或 QAction 的文档中找不到提到的内容。

void MyClass::contextMenuEvent(QContextMenuEvent *evt)
{
    QMenu menu(this);
    QAction *a = new QAction(tr("Some action"), this);
    menu.addAction(a); // who owns a?
    menu.exec(evt->globalPos());
}

Qt 菜单示例 不会删除它创建的任何操作,因此我假设 QMenu 拥有 QAction 的所有权。这是正确的吗?

When adding a QAction* to a QMenu who is responsible for deleting the QAction* object? I couldn't find it mentioned in the documentation for QMenu or QAction.

void MyClass::contextMenuEvent(QContextMenuEvent *evt)
{
    QMenu menu(this);
    QAction *a = new QAction(tr("Some action"), this);
    menu.addAction(a); // who owns a?
    menu.exec(evt->globalPos());
}

The Qt Menus example doesn't delete any of the actions it creates so I assume that QMenu takes ownership of the QAction. Is that correct?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别挽留 2025-01-01 13:12:40

如果将预先存在的操作添加到 QWidget(即 QMenu),则:

操作的所有权不会转移到此 QWidget。

请注意,在您的示例中,a 的删除由 MyClass 处理,因为您已将其用作父 QObject,因此 a< /code> 在QObject 的析构函数中被删除。

If you add a pre-existing action to a QWidget (which QMenu is) then:

The ownership of action is not transferred to this QWidget.

Note that in your example, deletion of a is handled by MyClass because you have used it as a parent QObject, so a is deleted in QObject's destructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文