Lecture
Inheritance lets us inherit fields and methods from another class. Polymorphism uses those methods to perform different tasks. This allows us to perform a single action in different ways.
Code Example
classAnimal// Base class (parent)
{
publicvoid animalSound()
{
Console.WriteLine("The animal makes a sound");
}
}
classPig:Animal// Derived class (child)
{
publicvoid animalSound()
{
Console.WriteLine("The pig says: wee wee");
}
}
classDog:Animal// Derived class (child)
{
publicvoid animalSound()
{
Console.WriteLine("The dog says: bow wow");
}
}
NB: if you don't use virtual and override keywords the output will not be changed:
The animal makes a sound
The animal makes a sound
The animal makes a sound
The above code must to rewrite to the following:
classAnimal// Base class (parent)
{
publicvirtualvoid animalSound()
{
Console.WriteLine("The animal makes a sound");
}
}
classPig:Animal// Derived class (child)
{
publicoverridevoid animalSound()
{
Console.WriteLine("The pig says: wee wee");
}
}
classDog:Animal// Derived class (child)
{
publicoverridevoid animalSound()
{
Console.WriteLine("The dog says: bow wow");
}
}
classProgram
{
staticvoidMain(string[] args)
{
Animal myAnimal =newAnimal();// Create a Animal object
Animal myPig =newPig();// Create a Pig object
Animal myDog =newDog();// Create a Dog object
myAnimal.animalSound();
myPig.animalSound();
myDog.animalSound();
}
}
The output will be:
The animal makes a sound
The pig says: wee wee
The dog says: bow wow
Comments 0