zoukankan      html  css  js  c++  java
  • 当程序退出后,动态申请的内存会自动释放吗

    参考网址: https://blog.csdn.net/deng19936/article/details/101967969

    我们知道程序在运行的过程中是需要占用一定内存的,一般程序所需要的内存由操作系统来分配,由操作系统分配的,自然需要由操作系统回收。但是在实际开发中,用户可以通过一些函数人为地申请内存,再由用户来释放,例如通过C语言的malloc函数动态开辟内存。现在就有一个问题,如果用户没有用free函数释放内存空间,那么这块内存是不是就永远被占用了呢?当程序退出后,动态申请的内存会自动释放吗?

    stackoverflow有人问了这么一个问题,下面这段程序执行完毕后,malloc的内存会释放吗

    [cpp] view plain copy
     
     
    1. <span style="font-size:18px;">int main () {  
    2.   int *p = malloc(10 * sizeof *p);  
    3.   *p = 42;  
    4.   return 0;  //Exiting without freeing the allocated memory  
    5. }</span>  

    赞数最多的这么回答:

    It depends on the operating system. The majority of modern (and all major) operating systems will free memory not freed by the program when it ends.

    Relying on this is bad practice and it is better to free it explicitly. The issue isn't just that your code looks bad. You may decide you want to integrate your small program into a larger, long running one. Then a while later you have to spend hours tracking down memory leaks.
    Relying on a feature of an operating system also makes the code less portable.

    因此这些内存是会被大部分现代操作系统释放掉的,这些系统包括

    MacOS X, Linux, all recent version of Windows, and all currently manufactured phone handsets

    一些老的系统不会释放:

    If you're programming on microcontrollers, on MacOS 9 or earler, DOS, or Windows 3.x, then you might need to be concerned about memory leaks making memory permenantly unavailable to the whole operating system.

    解释如下:

    Most modern operating systems employ a memory manager, and all userland processes only see so-called virtual memory, which is not related to actual system memory in a way that the program could inspect. This means that programs cannot simply read another process's memory or kernel memory. It also means that the memory manager will completely "free" all memory that has been assigned to a process when that process terminates, so that memory leaks within the program do not usually "affect" the rest of the system (other than perhaps forcing a huge amount of disk swapping and perhaps some "out of memory" behaviour).

    This doesn't mean that it's in any way OK to treat memory leaks light-heartedly, it only means that no single program can casually corrupt other processes on modern multi-tasking operating systems (deliberate abuse of administrative privileges notwithstanding, of course).

    此外The Linux Programming Interface书中有这么一段:

    When a process terminates, all of its memory is returned to the system, including heap memory allocated by functions in the malloc package. In programs that allocate memory and continue using it until program termination, it is common to omit calls to free(), relying on this behavior to automatically free the memory.  This can be especially useful in programs that allocate many blocks of memory, since adding multiple calls to free() could be expensive in terms of CPU time, as well as perhaps being complicated to code.

    我们在学习C语言时,老师就告诉我们,动态开辟内存之后,要及时回收,不然就会造成内存泄漏。现在想想内存泄漏是指在当前进程在堆中分配了空间后,完成了相关的操作,没有及时释放掉(不再需要此空间),并且进程没有结束!

    我们在编写循环程序时要格外注意这一点,在每一次循环操作时,如果动态申请了内存,一定要及时释放,不然下一次循环又会吃掉相应的内存空间。

  • 相关阅读:
    Ynoi2016 这是我自己的发明
    Luogu P5268 [SNOI2017]一个简单的询问
    Ynoi2017 由乃的玉米田
    BZOJ4320 [Shanghai2006]Homework
    JOISC2014C 歴史の研究
    莫队
    LOJ6119 「2017 山东二轮集训 Day7」国王
    Luogu P3295 [SCOI2016]萌萌哒
    10.1 进程间通信--消息队列
    9.2 网络协议理论
  • 原文地址:https://www.cnblogs.com/bruce1992/p/15324074.html
Copyright © 2011-2022 走看看