Skip to main content
Engineering LibreTexts

3.1: Dynamic memory allocation

  • Page ID
    35990
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    new and delete Operators in C++ for Dynamic Memory

    Dynamic memory allocation in C/C++ refers to performing memory allocation manually by programmer. Dynamically allocated memory is allocated on Heap and non-static and local variables get memory allocated on Stack (Refer Memory Layout C Programs for details).

    What are applications?

    • One use of dynamically allocated memory is to allocate memory of variable size which is not possible with compiler allocated memory except variable length arrays.
    • The most important use is flexibility provided to programmers. We are free to allocate and deallocate memory whenever we need and whenever we don’t need anymore. There are many cases where this flexibility helps. Examples of such cases are Linked List, Tree, etc.

    For normal variables like “int a”, “char str[10]”, etc, memory is automatically allocated and deallocated. For dynamically allocated memory like “int *p = new int[10]”, it is programmers responsibility to deallocate memory when no longer needed. If programmer doesn’t deallocate memory, it causes memory leak (memory is not deallocated until program terminates).

    new operator

    The new operator denotes a request for memory allocation on the Free Store. If sufficient memory is available, new operator initializes the memory and returns the address of the newly allocated and initialized memory to the pointer variable.

    • Syntax to use new operator: To allocate memory of any data type, the syntax is:
      pointer-variable = new data-type;
      

      Here, pointer-variable is the pointer of type data-type. Data-type could be any built-in data type including array or any user defined data types including structure and class.
      Example:

      // Pointer initialized with NULL
      // Then request memory for the variable
      int *p = NULL; 
      p = new int;   
      
                  OR
      
      // Combine declaration of pointer 
      // and their assignment
      int *p = new int; 
      
    • Initialize memory: We can also initialize the memory using new operator:
      pointer-variable = new data-type(value);
      Example:
      int *p = new int(25);
      float *q = new float(75.25);
      
    • Allocate block of memory: new operator is also used to allocate a block(an array) of memory of type data-type.
      pointer-variable = new data-type[size];
      

      where size(a variable) specifies the number of elements in an array.

      Example:
              int *p = new int[10]
      

      Dynamically allocates memory for 10 integers continuously of type int and returns pointer to the first element of the sequence, which is assigned to p(a pointer). p[0] refers to first element, p[1] refers to second element and so on.
      Example of dynamically allocated memory and how we can access the memory space

    There is a difference between declaring a normal array and allocating a block of memory using new. The most important difference is, normal arrays are deallocated by compiler (If array is local, then deallocated when function returns or completes). However, dynamically allocated arrays always remain there until either they are deallocated by programmer or program terminates.

    If enough memory is not available in the heap to allocate, the new request indicates failure by throwing an exception of type std::bad_alloc, unless “nothrow” is used with the new operator, in which case it returns a NULL pointer (scroll to section “Exception handling of new operator” in this article). Therefore, it may be good idea to check for the pointer variable produced by new before using it program.

    int *p = new(nothrow) int;
    if (!p)
    {
       cout << "Memory allocation failed\n";
    }
    

    delete Operator

    Since it is programmer’s responsibility to deallocate dynamically allocated memory, programmers are provided delete operator by C++ language.
    Syntax:

    // Release memory pointed by pointer-variable
    delete pointer-variable;  
    

    Here, pointer-variable is the pointer that points to the data object created by new.
    Examples:

      delete p;
      delete q;
    

    To free the dynamically allocated array pointed by pointer-variable, use following form of delete:

    // Release block of memory 
    // pointed by pointer-variable
    delete[] pointer-variable;  
    
    Example:
       // It will free the entire array
       // pointed by p.
       delete[] p;

    Adapted from:
     "new and delete operators in C++ for dynamic memory" by Akash Gupta, Geeks for Geeks is licensed under CC BY-SA 4.0


    3.1: Dynamic memory allocation is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?