Concept Flow - Object creation
Class Definition
Call new Keyword
Allocate Memory
Call Constructor
Initialize Object
Return Object Reference
Use Object
This flow shows how Java creates an object: define class, use 'new' to allocate memory, call constructor to initialize, then get a reference to use.