- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这是从 qt ui
文件生成的代码,我看到代码使用 new
关键字分配内存但没有 delete
类中用于删除已分配资源的关键字,这是 qt 开发人员的错误还是其他原因(没有释放资源)?
/********************************************************************************
** Form generated from reading UI file 'canyyeffectcontrol.ui'
**
** Created by: Qt User Interface Compiler version 5.0.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_CANYYEFFECTCONTROL_H
#define UI_CANYYEFFECTCONTROL_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QSlider>
#include <QtWidgets/QSpinBox>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_canyyeffectcontrol
{
public:
QGridLayout *gridLayout;
QSlider *Threshold2Slider;
QLabel *Threshold1Label;
QLabel *ApertureSizeLabel;
QLabel *Threshold2Label;
QSpinBox *Threshold1Spin;
QSpinBox *Threshold2Spin;
QSpinBox *ApertureSizeSpin;
QSlider *ApertureSizeSlider;
QSlider *Threshold1Slider;
QCheckBox *EL2GLabel;
void setupUi(QWidget *canyyeffectcontrol)
{
if (canyyeffectcontrol->objectName().isEmpty())
canyyeffectcontrol->setObjectName(QStringLiteral("canyyeffectcontrol"));
canyyeffectcontrol->resize(432, 210);
canyyeffectcontrol->setMinimumSize(QSize(153, 119));
canyyeffectcontrol->setMaximumSize(QSize(432, 210));
gridLayout = new QGridLayout(canyyeffectcontrol);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
Threshold2Slider = new QSlider(canyyeffectcontrol);
Threshold2Slider->setObjectName(QStringLiteral("Threshold2Slider"));
Threshold2Slider->setOrientation(Qt::Horizontal);
gridLayout->addWidget(Threshold2Slider, 4, 1, 1, 2);
Threshold1Label = new QLabel(canyyeffectcontrol);
Threshold1Label->setObjectName(QStringLiteral("Threshold1Label"));
gridLayout->addWidget(Threshold1Label, 2, 0, 1, 1);
ApertureSizeLabel = new QLabel(canyyeffectcontrol);
ApertureSizeLabel->setObjectName(QStringLiteral("ApertureSizeLabel"));
gridLayout->addWidget(ApertureSizeLabel, 5, 0, 1, 1);
Threshold2Label = new QLabel(canyyeffectcontrol);
Threshold2Label->setObjectName(QStringLiteral("Threshold2Label"));
gridLayout->addWidget(Threshold2Label, 4, 0, 1, 1);
Threshold1Spin = new QSpinBox(canyyeffectcontrol);
Threshold1Spin->setObjectName(QStringLiteral("Threshold1Spin"));
gridLayout->addWidget(Threshold1Spin, 2, 3, 1, 1);
Threshold2Spin = new QSpinBox(canyyeffectcontrol);
Threshold2Spin->setObjectName(QStringLiteral("Threshold2Spin"));
gridLayout->addWidget(Threshold2Spin, 4, 3, 1, 1);
ApertureSizeSpin = new QSpinBox(canyyeffectcontrol);
ApertureSizeSpin->setObjectName(QStringLiteral("ApertureSizeSpin"));
gridLayout->addWidget(ApertureSizeSpin, 5, 3, 1, 1);
ApertureSizeSlider = new QSlider(canyyeffectcontrol);
ApertureSizeSlider->setObjectName(QStringLiteral("ApertureSizeSlider"));
ApertureSizeSlider->setOrientation(Qt::Horizontal);
gridLayout->addWidget(ApertureSizeSlider, 5, 1, 1, 2);
Threshold1Slider = new QSlider(canyyeffectcontrol);
Threshold1Slider->setObjectName(QStringLiteral("Threshold1Slider"));
Threshold1Slider->setOrientation(Qt::Horizontal);
gridLayout->addWidget(Threshold1Slider, 2, 1, 1, 1);
EL2GLabel = new QCheckBox(canyyeffectcontrol);
EL2GLabel->setObjectName(QStringLiteral("EL2GLabel"));
gridLayout->addWidget(EL2GLabel, 0, 0, 1, 1);
retranslateUi(canyyeffectcontrol);
QMetaObject::connectSlotsByName(canyyeffectcontrol);
} // setupUi
void retranslateUi(QWidget *canyyeffectcontrol)
{
canyyeffectcontrol->setWindowTitle(QApplication::translate("canyyeffectcontrol", "Canny effect control", 0));
Threshold1Label->setText(QApplication::translate("canyyeffectcontrol", "Threshold size 1", 0));
ApertureSizeLabel->setText(QApplication::translate("canyyeffectcontrol", "Aperture size", 0));
Threshold2Label->setText(QApplication::translate("canyyeffectcontrol", "Threshold size 2", 0));
EL2GLabel->setText(QApplication::translate("canyyeffectcontrol", "Enable L2G", 0));
} // retranslateUi
};
namespace Ui {
class canyyeffectcontrol: public Ui_canyyeffectcontrol {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_CANYYEFFECTCONTROL_H
这是否意味着我应该重写代码以释放内存(例如unique
_ptr)并且代码应该是这样的
/********************************************************************************
** Form generated from reading UI file 'canyyeffectcontrol.ui'
**
** Created by: Qt User Interface Compiler version 5.0.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
** I modify the code
********************************************************************************/
#ifndef UI_CANYYEFFECTCONTROL_H
#define UI_CANYYEFFECTCONTROL_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QSlider>
#include <QtWidgets/QSpinBox>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_canyyeffectcontrol
{
public:
std::unique_ptr<QGridLayout> gridLayout;
std::unique_ptr<QSlider> Threshold2Slider;
std::unique_ptr<QLabel> Threshold1Label;
std::unique_ptr<QLabel> ApertureSizeLabel;
std::unique_ptr<QLabel> Threshold2Label;
std::unique_ptr<QSpinBox>Threshold1Spin;
std::unique_ptr<QSpinBox> Threshold2Spin;
std::unique_ptr<QSpinBox> ApertureSizeSpin;
std::unique_ptr<QSlider> ApertureSizeSlider;
std::unique_ptr<QSlider> Threshold1Slider;
std::unique_ptr<QCheckBox> EL2GLabel;
void setupUi(QWidget *canyyeffectcontrol)
{
if (canyyeffectcontrol->objectName().isEmpty())
canyyeffectcontrol->setObjectName(QStringLiteral("canyyeffectcontrol"));
canyyeffectcontrol->resize(432, 210);
canyyeffectcontrol->setMinimumSize(QSize(153, 119));
canyyeffectcontrol->setMaximumSize(QSize(432, 210));
gridLayout = std::unique_ptr<QGridLayout> (new QGridLayout(canyyeffectcontrol));
gridLayout->setObjectName(QStringLiteral("gridLayout"));
Threshold2Slider = std::unique_ptr<QSlider>(new QSlider(canyyeffectcontrol));
Threshold2Slider.get()->setObjectName(QStringLiteral("Threshold2Slider"));
Threshold2Slider.get()->setOrientation(Qt::Horizontal);
gridLayout.get()->addWidget(Threshold2Slider.get(), 4, 1, 1, 2);
Threshold1Label = std::unique_ptr<QLabel> (new QLabel(canyyeffectcontrol));
Threshold1Label.get()->setObjectName(QStringLiteral("Threshold1Label"));
gridLayout.get()->addWidget(Threshold1Label.get(), 2, 0, 1, 1);
ApertureSizeLabel = std::unique_ptr<QLabel> (new QLabel(canyyeffectcontrol));
ApertureSizeLabel.get()->setObjectName(QStringLiteral("ApertureSizeLabel"));
gridLayout.get()->addWidget(ApertureSizeLabel.get(), 5, 0, 1, 1);
Threshold2Label = std::unique_ptr<QLabel> (new QLabel(canyyeffectcontrol));
Threshold2Label.get()->setObjectName(QStringLiteral("Threshold2Label"));
gridLayout.get()->addWidget(Threshold2Label.get(), 4, 0, 1, 1);
Threshold1Spin = std::unique_ptr<QSpinBox> (new QSpinBox(canyyeffectcontrol));
Threshold1Spin.get()->setObjectName(QStringLiteral("Threshold1Spin"));
gridLayout.get()->addWidget(Threshold1Spin.get(), 2, 3, 1, 1);
Threshold2Spin = std::unique_ptr<QSpinBox> (new QSpinBox(canyyeffectcontrol));
Threshold2Spin.get()->setObjectName(QStringLiteral("Threshold2Spin"));
gridLayout->addWidget(Threshold2Spin.get(), 4, 3, 1, 1);
ApertureSizeSpin = std::unique_ptr<QSpinBox> (new QSpinBox(canyyeffectcontrol));
ApertureSizeSpin.get()->setObjectName(QStringLiteral("ApertureSizeSpin"));
gridLayout.get()->addWidget(ApertureSizeSpin.get(), 5, 3, 1, 1);
ApertureSizeSlider =std::unique_ptr<QSlider> (new QSlider(canyyeffectcontrol));
ApertureSizeSlider.get()->setObjectName(QStringLiteral("ApertureSizeSlider"));
ApertureSizeSlider.get()->setOrientation(Qt::Horizontal);
gridLayout->addWidget(ApertureSizeSlider.get(), 5, 1, 1, 2);
Threshold1Slider =std::unique_ptr<QSlider> (new QSlider(canyyeffectcontrol));
Threshold1Slider.get()->setObjectName(QStringLiteral("Threshold1Slider"));
Threshold1Slider.get()->setOrientation(Qt::Horizontal);
gridLayout.get()->addWidget(Threshold1Slider.get(), 2, 1, 1, 1);
EL2GLabel = std::unique_ptr<QCheckBox> (new QCheckBox(canyyeffectcontrol));
EL2GLabel.get()->setObjectName(QStringLiteral("EL2GLabel"));
gridLayout.get()->addWidget(EL2GLabel.get(), 0, 0, 1, 1);
retranslateUi(canyyeffectcontrol);
QMetaObject::connectSlotsByName(canyyeffectcontrol);
} // setupUi
void retranslateUi(QWidget *canyyeffectcontrol)
{
canyyeffectcontrol->setWindowTitle(QApplication::translate("canyyeffectcontrol", "Canny effect control", 0));
Threshold1Label.get()->setText(QApplication::translate("canyyeffectcontrol", "Threshold size 1", 0));
ApertureSizeLabel.get()->setText(QApplication::translate("canyyeffectcontrol", "Aperture size", 0));
Threshold2Label.get()->setText(QApplication::translate("canyyeffectcontrol", "Threshold size 2", 0));
EL2GLabel.get()->setText(QApplication::translate("canyyeffectcontrol", "Enable L2G", 0));
} // retranslateUi
};
namespace Ui {
class canyyeffectcontrol: public Ui_canyyeffectcontrol {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_CANYYEFFECTCONTROL_H
最佳答案
阅读 QObject
派生类如何管理内存 - 简而言之,如果 QObject
是用父类构造的,那么当父类被销毁时它也会被销毁.在您的示例中,看起来所有内容都是作为 canyyeffectcontrol
的子项创建的,因此这些对象将在那时被销毁。
关于c++ - Qt UI Generator 不释放资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17853321/
有人告诉我,如果我只有一个“东西”,比如家(不是多个家),我应该在 routes.rb 中使用资源 :home,而不是资源 :home。但是当我查看路由时,POST 函数似乎想要 home#creat
Activity 开始。这些代码框架顺利通过。 // Initialize array adapters. One for already paired devices and //
资源 search-hadoop.com search-hadoop.com索引所有邮件列表,非常适合历史搜索。当你遇到问题时首先在这里搜索,因为很可能有人已经遇到了你的问题。 邮件列表 在A
我是 WPF 的新手,正在努力使用位于单独程序集中的样式。这就是我正在做的:- 我有一个带有\Themes 文件夹的类库项目,其中包含一个“generic.xaml”,它合并了\Themes 内的子文
我正在编写一个使用虚拟树状文件结构的插件。基本上它就像一个包含文件的标准文件系统,区别在于这些文件实际上并不存在于文件系统中的特定位置,而只是 java 对象。 这些当前由使用 SettingProv
如果我在 XAML 中使用以下内容,我会收到错误消息: 错
我正在使用 laravel 资源来获取 api 的数据: return [ 'id' => $this->id, 'unread' =>
我有以下 pom.xml: 4.0.0 mycompany resource-fail 0.0.1-SNAPSHOT BazBat
许多GDI +类都实现IDisposable,但是我不确定何时应该调用Dispose。对于使用new或静态方法(例如Graphics.CreateGraphics)创建的实例来说,这很明显。但是,由属
我正在构建一组 RESTful 资源,其工作方式如下:(我将使用“people”作为示例): 获取/people/{key} - 返回一个人对象 (JSON) GET/people?first_nam
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一个使用 $resource 的简单 Controller : var Regions = $resource('mocks/regions.json'); $scope.regions =
在 Azure 门户中,如何查看不同资源之间的依赖关系。我特别想查看哪些资源正在使用我要删除的存储。 最佳答案 您可以使用应用程序洞察应用程序 map 来执行此操作: 您还可以打开存储帐户的日志记录:
我正在使用 ionic 生成资源(图标和启动画面)。我正在使用 ionic v2.1.0 和 cordova v6.4.0。 到目前为止我一直在使用(它在以前的版本中工作): cordova plat
是否可以使用 Assets 包含子文件夹中的文件? 示例:[base_url]/assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min.css 最佳
我正在阅读一些尝试教授 Android 开发的书。在书中,作者概述了 res/下的一些目录。他提到 res/menu 包含基于 XML 的菜单规范。他还提到了保存“通用文件”的 res/raw。当我创
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
我在服务器上使用 express-resource。在我的 AngularJS Controller 中: var User = $resource('/services/users/:use
因此,每当我运行我的应用程序时,它都会立即崩溃并给出以下错误: No package identifier when getting value for resource number 0x00000
对于我正在创建的(网络)应用程序,我需要使用基本身份验证在我的 UIWebView 中加载页面。 现在设置我使用的授权 header : NSString *result = [NSString st
我是一名优秀的程序员,十分优秀!