Threads & Shared Memory
← Back to Concurrency Models
The traditional concurrency model where threads share a common address space and communicate through shared mutable state. Requires explicit synchronization (locks, atomics) to prevent data races. Used in Java, C++, and Python.