使用 QVector 的内存泄漏

发布于 2024-12-06 04:34:24 字数 250 浏览 0 评论 0原文

QVector<cLibraryRecord> Library;
...
Library.push_back(cLibraryRecord(ReaderFullName, BookGenre, BookTitle, AuthorsFullName, IssueDate, ReturnDate));
...
Library.remove(i);

QVector::remove() 不会清除内存。如何清理内存? 提前致谢。

QVector<cLibraryRecord> Library;
...
Library.push_back(cLibraryRecord(ReaderFullName, BookGenre, BookTitle, AuthorsFullName, IssueDate, ReturnDate));
...
Library.remove(i);

QVector::remove() does not clear the memory. How can I clean the memory?
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

來不及說愛妳 2024-12-13 04:34:24

QVector.remove() 始终调用所包含对象的析构函数,但在删除时保留的大小(由 QVector::capacity() 返回)不会自动缩小元素。

您可以使用QVector::squeeze()来释放未使用的保留内存。

但是您的类cLibraryRecord 中也可能存在内存泄漏。

有关更多详细信息,请参阅 Qt 文档:Qt 容器增长策略

QVector.remove() always calls the destructor for the contained object, but the reserved size (returned by QVector::capacity()) doesn't shrink automatically when you remove elements.

You can use QVector::squeeze() to release the unused reserved memory.

But you can also have a memory leak in your class cLibraryRecord.

See Qt documentation for more details: Qt containers growth strategies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文