Q:

C# program to demonstrate abstract class with multiple-level inheritance

0

C# program to demonstrate abstract class with multiple-level inheritance

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to demonstrate abstract class with multiple-level inheritance is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to demonstrate abstract class 
//with multi-level inheritance

using System;

abstract class Abs
{
    //Method Declaration
    public abstract void Method1();
}

class Sample1 : Abs
{
    //Method definition
    public override void Method1()
    {
        Console.WriteLine("Method1() called");
    }
}

class Sample2 : Sample1
{
    //Method definition
    public void Method2()
    {
        Console.WriteLine("Method2() called");
    }
}

class Sample3 : Sample2
{
    //Method definition
    public void Method3()
    {
        Console.WriteLine("Method3() called");
    }
}

class Program
{
    public static void Main(String[] args)
    {
        Sample3 S = new Sample3();

        S.Method1();
        S.Method2();
        S.Method3();
    }
}

Output:

Method1() called
Method2() called
Method3() called
Press any key to continue . . .

Explanation:

Here, we created an abstract class Abs that contains an abstract method Method1(). Then we override the Method1() in the Sample1 class. After that, we created multi-level inheritance with the help of Sample1Sample2, and Sample3 classes. Each class contains one method.

Now look to the Program class, It contains the Main() method, the Main() method is the entry point for the program. Here, we created the object of Sample3 class and called all methods that will print the appropriate message on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to implement multiple-inheritance using... >>
<< C# program to inherit an abstract class and interf...