Software Engineering KB

Home

❯

02 Programming Languages and Paradigms

❯

04 Concurrency

❯

01 Concept

❯

Threads & Shared Memory

Threads & Shared Memory

Feb 10, 20261 min read

  • concurrency
  • models
  • shared-memory

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.

Key Properties

  • Traditional Model Requiring Synchronization

concurrency models shared-memory


Graph View

  • Threads & Shared Memory
  • Key Properties

Backlinks

  • Concurrency Models
  • Traditional Model Requiring Synchronization

Created with Quartz v4.5.2 © 2026

  • GitHub