Concept Flow - Why object declarations create singletons
Start program
Declare object
Object instance created once
Access object multiple times
Same instance used every time
Program ends
The program declares an object which creates a single instance. Every access uses this same instance, ensuring only one exists.