Multilevel Hierarchy in java programming

In simple inheritance a subclass or derived class derives the properties from its parent class, but in multilevel inheritance a subclass is derived from a derived class. One class inherits only single class. Therefore, in multilevel inheritance, every time ladder increases by one. The lower most class will have the properties of all the super classes’.

It is common that a class is derived from another derived class.The class student serves as a base class for the derived class marks, which in turn serves as a base class for the derived class percentage.The class marks is known as intermediates base class since it provides a link for the inheritance between student and percentage.
The chain is known as inheritance path. When this type of situation occurs, each subclass inherits all of the features found in all of its super classes. In this case, percentage inherits all aspects of marks and student. 
To understand the flow of program read all comments of program.


Program : Multi_Inhe.java

class student
{
    int rollno;
    String name;

    student(int r, String n)
    {
        rollno = r;
        name = n;
    }
    void dispdatas()
    {
        System.out.println("Rollno = " + rollno);
        System.out.println("Name = " + name);
    }
}

class marks extends student
{
    int total;
    marks(int r, String n, int t)
    {
        super(r,n);   //call super class (student) constructor
        total = t;
    }
    void dispdatam()
    {
        dispdatas();    // call dispdatap of student class
        System.out.println("Total = " + total);
    }
}

class percentage extends marks
{
    int per;
    
    percentage(int r, String n, int t, int p)
    {
        super(r,n,t);  //call super class(marks) constructor
        per = p;
    }
    void dispdatap()
    {
        dispdatam();    // call dispdatap of marks class
        System.out.println("Percentage = " + per);
    }
}
class Multi_Inhe
{
    public static void main(String args[])
    {
        percentage stu = new percentage(102689, "VINEETH", 350, 70); //call constructor percentage
        stu.dispdatap();  // call dispdatap of percentage class
    }
}
Output 
G:\>javac Multi_Inhe.java
G:\>java Multi_Inhe
Rollno = 102689
Name = VINEETH
Total = 350
Percentage = 70

Multilevel Hierarchy in java programming

3 comments:

Unknown said...

Very informative ..i suggest this blog to my friends..Thank you for sharingjava training in chennai | chennai's no.1 java training in chennai | best java institute in chennai

Unknown said...

Thank for this info article . It is really a great work and the way in which u r sharing the knowledge is excellent
java training in chennai |
java training institutes in chennai

Xplore IT Corp said...

Hi, thanks for your blog, if you want to learn about programming languages like java, php, android app, embedded system etc. I think this training institute is the best one.
Best java training in coimbatore
Android training in coimbatore
Networking training in coimbatore

Post a Comment

 

learn java programming Copyright © 2011-2012 | Powered by appsackel.org