🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Programming Concepts Intermediate

What is Garbage Collection?

An automatic memory management process that identifies and reclaims memory no longer in use by a program.

Garbage collection (GC) frees developers from manual memory management. The GC periodically identifies objects that are no longer reachable from any reference and reclaims their memory. This prevents memory leaks and dangling pointer bugs.

Common algorithms include reference counting (Python, PHP), mark-and-sweep (JavaScript), and generational collection (Java, .NET). GC introduces some overhead and occasional pauses. Languages like C/C++ and Rust use manual or ownership-based memory management instead.

Related Terms

API Design
The practice of designing application programming interfaces that are consistent, intuitive, and maintainable for developers to consume.
SOLID Principles Breakdown
Five object-oriented design principles that guide developers in creating maintainable, flexible, and scalable software systems.
Closure
A function that captures and retains access to variables from its enclosing scope, even after that scope has finished executing.
Object-Oriented Programming (OOP)
A programming paradigm that organizes software design around objects containing data and behavior.
Functional Programming
A programming paradigm that treats computation as the evaluation of mathematical functions, avoiding state changes and mutable data.
Thread
The smallest unit of execution within a process, allowing concurrent operations to run within a single program.
View All Programming Concepts Terms →