gpt4 book ai didi

c++ - 如何安全地删除 QT::QTcpSocket?

转载 作者:可可西里 更新时间:2023-11-01 02:37:09 26 4
gpt4 key购买 nike

QTcpSocket * QTcpServer::nextPendingConnection () [virtual]

The socket is created as a child of the server, which means that it isautomatically deleted when the QTcpServer object is destroyed. It isstill a good idea to delete the object explicitly when you are donewith it, to avoid wasting memory.

在我的应用程序中,QTcpServer 存在很长时间(当连接关闭时它会与主机断开连接,但除非程序退出,否则它永远不会被销毁),并且它接受很多 QTcpServer::nextPendingConnection 并占用大量内存。

如何在切换到下一个挂起之前删除旧的 QTcpSocket 对象以节省内存,同时避免重复删除?

在这种情况下删除可以吗?

最佳答案

Is delete ok in this case?

是的,多亏了 Qt 的对象设计的巧妙。

特别是,QTcpSocket(最终)派生自 Object,并且 QObject 析构函数方法在末尾包含此代码:

if (d->parent)        // remove it from parent object
d->setParent_helper(0);

因此删除 QTcpSocket 对象将自动从其父对象(在本例中为 QTcpServer)的子列表中删除 QTcpSocket,因此当 QTcpServer 对象被销毁时不会出现双重删除。

关于c++ - 如何安全地删除 QT::QTcpSocket?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820450/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com