Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Dynamic Allocation | Dynamic Memory Allocation
course content

Зміст курсу

C++ Pointers and References

Dynamic AllocationDynamic Allocation

Dynamic memory allocation involves using operators new and delete. These operators allow you to allocate memory for variables and arrays at runtime, providing greater flexibility than static memory allocation.

  • new: operator that is used to dynamically allocate memory for an object or an array of objects during runtime;
  • delete: operator that is used to deallocate memory that was previously allocated with the new operator.

Note

A pointer pointing to dynamically allocated memory is typically stored on the stack, but the memory it points to is allocated on the heap.

To create an integer variable dynamically you have to use a pointer along with the new keyword.

To free the dynamically allocated memory, you use the delete operator:

Make it a rule for yourself: when you use new to allocate memory, always use delete to free it up later.

Note

Failure to delete dynamically allocated memory can result in memory leaks, where the program retains memory that is no longer in use.

Dynamic Allocated Arrays

When allocating memory for arrays dynamically, use the new[ ] operator and when releasing memory for dynamically allocated arrays, use delete[ ].

code example

Завдання

  • Dynamically allocate a float variable and an array of integer type.
  • Output addresses of the allocated variable and array.
  • Free allocated memory.

Все було зрозуміло?

Секція 4. Розділ 2
toggle bottom row
course content

Зміст курсу

C++ Pointers and References

Dynamic AllocationDynamic Allocation

Dynamic memory allocation involves using operators new and delete. These operators allow you to allocate memory for variables and arrays at runtime, providing greater flexibility than static memory allocation.

  • new: operator that is used to dynamically allocate memory for an object or an array of objects during runtime;
  • delete: operator that is used to deallocate memory that was previously allocated with the new operator.

Note

A pointer pointing to dynamically allocated memory is typically stored on the stack, but the memory it points to is allocated on the heap.

To create an integer variable dynamically you have to use a pointer along with the new keyword.

To free the dynamically allocated memory, you use the delete operator:

Make it a rule for yourself: when you use new to allocate memory, always use delete to free it up later.

Note

Failure to delete dynamically allocated memory can result in memory leaks, where the program retains memory that is no longer in use.

Dynamic Allocated Arrays

When allocating memory for arrays dynamically, use the new[ ] operator and when releasing memory for dynamically allocated arrays, use delete[ ].

code example

Завдання

  • Dynamically allocate a float variable and an array of integer type.
  • Output addresses of the allocated variable and array.
  • Free allocated memory.

Все було зрозуміло?

Секція 4. Розділ 2
toggle bottom row
some-alt