In this article, I describe what is polymorphism and when we use polymorphism in asp.net. polymorphism is one of the object oriented programming. It allows you to invoke derived class methods through abase class reference during runtime. To achieve this polymorphism we have to declare virtual keyword in base class, and override same method in derived class.
The virtual keyword indicates, the method can be overridden in any derived class.
class ShiftTime
{
public virtual void DisplayShiftTime()
{
Console.WriteLine("Shifttime");
}
}
class GeneralShift : ShiftTime
{
public override void DisplayShiftTime()
{
Console.WriteLine("GeneralShift time");
}
}
class NightShift : ShiftTime
{
public override void DisplayShiftTime()
{
Console.WriteLine("NightShift time");
}
}
public static void Main()
{
ShiftTime[] mShiftTime = new ShiftTime[3];
mShiftTime[0] = new ShiftTime();
mShiftTime[1] = new GeneralShift();
mShiftTime[2] = new NightShift();
foreach(ShiftTime m in mShiftTime)
{
m.DisplayShiftTime();
}
Console.ReadLine();
}
Description
In this above demonstration, I have written types of shift time. Here I create three class such as ShiftTime, GeneralShift and NightShift. ShiftTime is a base class and others derived class. We invoke a method DisplayShiftTime from a base class using virtual keyword and use override keyword in derived class .
Post your comments / questions
Recent Article
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
- Error: error:0308010C:digital envelope routines::unsupported
Related Article