what does Polymorphism mean in c# code example
Example 1: c# polymorphism
class Animal{
public virtual void animalSound() {
Console.WriteLine("The animal makes a sound");
}
}
class Pig: Animal {
public override void animalSound() {
Console.WriteLine("The pig says: wee wee");
}
}
class Dog: Animal {
public override void animalSound() {
Console.WriteLine("The dog says: bow wow");
}
}
static class main {
static void Main(){
Animal[] animals = new Animal[3];
animals[0] = new Animal();
animals[1] = new Dog();
animals[2] = new Pig();
foreach (Animal a in animals){
a.animalSound();
}
}
}
Example 2: what is polymorphism
The word polymorphism means having many forms. In simple words, we can define polymorphism as the ability of a message to be displayed in more than one form. Real life example of polymorphism: A person at the same time can have different characteristic. Like a man at the same time is a father, a husband, an employee.
Example 3: polymorphism in c#
public class X
{
public virtual void A()
{
}
}
public class Y : X
{
public override void A()
{
}
}