Are signals in Qt automatically disconnected when one of the class is deleted

QtDestructorQt Signals

Qt Problem Overview


Does Qt automatically remove connections between objects , when one of the side is deleted ?

e.g connect (A .. , B ..) , when A (a pointer) is deleted , or B is deleted , will the connection be disconnected ?

Is it necessary to use disconnect explicitly in destructor ?

Qt Solutions


Solution 1 - Qt

Yes, the QObject::~QObject destructor takes care of that:

> All signals to and from the object are automatically disconnected, and any pending posted events for the object are removed from the event queue.
> However, it is often safer to use deleteLater() rather than deleting a QObject subclass directly.

Do take care though:

> Warning: Deleting a QObject while pending events are waiting to be delivered can cause a crash. You must not delete the QObject directly if it exists in a different thread than the one currently executing. Use deleteLater() instead, which will cause the event loop to delete the object after all pending events have been delivered to it.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondaisyView Question on Stackoverflow
Solution 1 - QtMatView Answer on Stackoverflow