memory leaks when program is closed with x

戏子无情 提交于 2019-12-31 03:42:08

问题


Might be a stupid question, but if I create a console-application that dynamicly creates object and such, I make sure to free the memmory at shutdown. What happens if a user closes the application with the "x" button on the window? will there be memoryleaks and if so, how do i prevent it?


回答1:


No, there won't be any memory leaks.

When a user closes your application the process in which your appication runs gets terminated.Once a process gets terminated, the Operating System(OS) simply reclaims all the memory it had allocated to the process.

Note that for an OS there is no importance whether memory was leaked by the application or not it is simply reclaiming what it allocated to the process.




回答2:


The application will simply be killed. In this case, memory leaks don't really happen since the OS do the cleanup for you.




回答3:


Unless you have an embedded (or buggy) O/S you don't need to do anything.

If you do have an embedded (or buggy) O/S, you need to rigorously keep track of all your memory allocations and ensure there's a corresponding free. For a buggy O/S, you should additionally complain to the provider of said O/S



来源:https://stackoverflow.com/questions/12106349/memory-leaks-when-program-is-closed-with-x

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!