2022-07-12 15:42:08 +01:00
|
|
|
---
|
2022-09-06 15:44:40 +01:00
|
|
|
tags: [memory]
|
2022-07-12 15:42:08 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Memory leaks
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A memory leak occurs when you program memory and forget to delete it once you
|
|
|
|
are finished. The consequences of memory leak is that it reduces the performance
|
|
|
|
of the computer by reducing the amount of available memory. Eventually, in the
|
|
|
|
worst case, too much of the available memory may become allocated and all or
|
|
|
|
part of the system or device stops working correctly, the application fails, or
|
2024-04-16 07:30:05 +01:00
|
|
|
the system slows down vastly.
|