When we talk about
potential classes, we're essentially scouting for the building blocks of our object-oriented design. Classes are blueprints that define the nature (attributes) and capabilities (methods) of the objects that will be created. They are the fundamental components you’ll manipulate to construct your program.
From our list, items like 'Doctor,' 'Nurse,' and 'Client' scream potential classes because they are key players in the scenario described. What makes them stand out as classes is their potential to hold unique information and perform specific tasks.
Why Entities Make Good Classes
- Containment of Information: Entities like 'Nurse' or 'Medication' can encapsulate data, such as a nurse's schedule or a medication's dosage instructions.
- Reusability: Once defined, a 'Doctor' class can be reused for each individual doctor in the system, with their respective attributes.
- Versatility: Classes such as 'Patient' can interact with others, for instance, receiving medication or being invoiced.
Identifying potential classes is about seeing the inherent structure in the chaos of a problem domain, then crafting that structure into code.