Superclass
OldPhone
📸
void takePhoto() {
print("Blurry Image");
}
Subclass
HDPhone
📸
// Inherits blurry photo
@Override takePhoto()
The
HDPhone
inherits the old camera, but we want it to do better. Use
Method Overriding
to redefine how it takes photos!