与 g++是否有运行时设置来通过删除来打乱释放的内存?

发布于 2024-08-24 23:38:51 字数 70 浏览 5 评论 0原文

有谁知道我如何让 g++ 或 gcc 运行时打乱删除后对象所在的内存?我有一个理论,我在删除对象后使用它,但实际上它很少崩溃。

Does anyone know how I can for the g++ or gcc runtime to scramble the ram where an object was after delete? I have a theory that I'm using an object after it has been deleted but in practice it rarely crashes.

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

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

发布评论

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

评论(3

秋心╮凉 2024-08-31 23:38:52

我建议使用 valgrind 运行 - 它会告诉您释放内存后是否正在访问内存。

I'd suggesting running with valgrind - that'll tell you if you're accessing memory after freeing it.

冬天的雪花 2024-08-31 23:38:52

inline void operator delete(void* memblock) { //you custom stuff } 将覆盖全局。我曾经使用它来确保安全,这样我们就可以将内存清零,这样就不太可能泄漏重要信息。

inline void operator delete(void* memblock) { //you custom stuff } would override the global. I used to use this for security so that we could zero out the memory so its less likely to leak important information.

梦冥 2024-08-31 23:38:52

如果您愿意,可以为您的对象重载delete

You can overload delete for your object if you like.

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