比如一个像下面这样定义的 QDialog 窗体:
#ifndef PLAYDIALOG_H
#define PLAYDIALOG_H
#include <memory>
#include <QVBoxLayout>
#include <QDialog>
class QPushButton;
class PlayDialog : public QDialog
{
Q_OBJECT
public:
explicit PlayDialog(QWidget* parent = nullptr);
private:
QVBoxLayout* m_layout;
QPushButton* m_button1;
std::shared_ptr<QPushButton> m_button2;
QSharedPointer<QPushButton> m_button3;
};
#endif // PLAYDIALOG_H
#include "playdialog.h"
#include <memory>
#include <QDialog>
#include <QLayout>
#include <QPushButton>
#include <QVBoxLayout>
PlayDialog::PlayDialog(QWidget* parent) : QDialog(parent), m_layout(new QVBoxLayout(this))
{
m_button1 = new QPushButton("BUTTON1", this);
m_button2 = std::make_shared<QPushButton>("BUTTON2", this);
m_button3 = QSharedPointer<QPushButton>::create("BUTTON3", this);
m_layout->addWidget(m_button1);
m_layout->addWidget(m_button2.get());
m_layout->addWidget(m_button3.get());
setLayout(m_layout);
}
其中的 QPushButton 都设置了 QDialog 窗体为父控件,m_button2
和m_button3
分别用 C++原生和 Qt 的智能指针进行了包装。如果这个时候关掉父窗体,因为父子级关系三个按钮都会被释放,但是受智能指针管理的m_button2
和m_button3
按理说也会被释放,这种时候会存在二次删除风险吗?是不是在 Qt 中不应该用智能指针管理设置了父子级关系的 QWidget 控件?还是说 Qt 封装过的 QSharedPointer 可以放心使用?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.