Polymorphism
Polymorphism
class SuperParent {
private String fname;
private String lname;
private int age;
SuperParent() {
this.setFname("John");
this.setFname("Doe");
this.setAge(0);
}
// OOP
// Encapsulation
// Inheritance
// Polymorphism
// Abstraction