In this article, you will learn How to Create Polymorphism in JAVA.Example:-class Animal { public void animalSound() { System.out.println("The animal makes a sound"); } } class Pig extends Animal { public void animalSound() { System.out.println("The pig says: …
In this article, you will learn How to Create Polymorphism in JAVA.
Example:-
class Animal { public void animalSound() { System.out.println("The animal makes a sound"); } } class Pig extends Animal { public void animalSound() { System.out.println("The pig says: