Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果构造函数中的某些条件为真,我需要QWindow在构造函数完成后立即销毁从对象派生的对象。
QWindow
我想在构造函数中设置成员变量并检查窗口初始化函数。但我不知道哪个功能或信号适合这个。
您可以使用QObject::deleteLater()安全地删除您的对象。当条件为真时,只需在构造函数中调用它:
if(condition) { this->deleteLater(); return; }