Visibility of the latest write across threads, not atomic compound updates.
`volatile` solves stale reads for one variable, but it does not make operations like `count++` or check-then-act flows safe. That distinction is foundational in Java concurrency.