将父级传递给 Qt 类构造函数的目的是什么?
将父级传递给 Qt 类对象的构造函数的目的是什么?
What is the purpose of passing a parent into a constructor of a Qt class object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
将父级传递给 Qt 类对象的构造函数的目的是什么?
What is the purpose of passing a parent into a constructor of a Qt class object?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
它们确保您的堆分配的 QWidget 得到很好的处理(在需要时调用
delete
等)。有关详细说明,请参阅类似问题的此答案。
They ensure your heap-allocated QWidgets are taken care of nicely (
delete
called when it needs to be and such).For a detailed explanation, see this answer to a similar question.