Java Series #2a: Understanding OOPs in Java
1. Objects and Classes
A class is a blueprint. An object is the actual instance created from that blueprint.Each object has:
State (values)
Behavior (methods)
Identity (reference in memory)
Java provides a default constructor if no constructor i...
abheeshta-java.hashnode.dev3 min read