Home Answers Viewqa Java-Beginners multilevel inheritance

 
 


Pawan Wagh
multilevel inheritance
3 Answer(s)      a year ago
Posted in : Java Beginners

import java.io.*; public class Employee { int eid; String ename;

void tostring()
{
    System.out.print("Enter Your ID:");
    eid=Integer.parseInt(in.readLine());
    System.out.print("Enter Your Name:");
    ename=in.readLine();

}

} public class Manager extends Employee { float commission;

void ComputeSalary()
{
    tostring();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Salary:");
    Salary=Float.parseFloat(in.readLine());
    float tsalary=commission+salary;
    System.out.print("Your Total Salary:Rs."+tsalary);
}

} public class SalesPerson extends Manager { int sales;

void ComputeSalary()
{
    toString();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Sales:");
    sales=Integer.parseInt(in.readLine());
    float tsalary=commission+sales;
    System.out.print("Your Total Salary:Rs."+tsalary); 
}

} public class Wage extends salesPerson { int hr,rate;

void ComputeSalary()
{
    tostring();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Working Hours:");
    hr=Integer.parseInt(in.readLine());
    System.out.print("Enter Your Salary Rate/per Hour:Rs.");
    rate=Integer.parseInt(in.readLine());
    float tsalary=commission+(hr*rate);
    System.out.print("Your Total Salary:Rs."+tsalary);
}

}

public class iheritannce { public static void mai(String args[])throws IOException { DataInputStream in=new DataInputStream(System.in); Employee A=new Employee(); Manager B=new Manager(); SalesPerson C=new SalesPerson(); Wage D=new Wage(); A.ComputeSalary(); B.ComputeSalary(); C.ComputeSalary(); D.ComputeSalary(); } }

View Answers

May 2, 2012 at 12:04 AM


hey,,,,,,plz anyone help me..


May 2, 2012 at 10:42 AM


import java.io.*;
 class Employee { 
    int eid; String ename;
    DataInputStream in=new DataInputStream(System.in);
    float salary;

void tostring()throws Exception
{

    System.out.print("Enter Your ID:");
    eid=Integer.parseInt(in.readLine());
    System.out.print("Enter Your Name:");
    ename=in.readLine();

}
void ComputeSalary()throws Exception 
{

    toString();
   }

} 
class Manager extends Employee {
    float commission;

void ComputeSalary()throws Exception
{
    tostring();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Salary:");
    salary=Float.parseFloat(in.readLine());
    float tsalary=commission+salary;
    System.out.print("Your Total Salary:Rs."+tsalary);
}

}  class SalesPerson extends Manager { int sales;

void ComputeSalary()throws Exception 
{

    toString();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Sales:");
    sales=Integer.parseInt(in.readLine());
    float tsalary=commission+sales;
    System.out.print("Your Total Salary:Rs."+tsalary); 
}

} 
 class Wage extends SalesPerson { int hr,rate;

void ComputeSalary()throws Exception
{
    tostring();
    System.out.print("Enter Your Commission:Rs.");
    commission=Float.parseFloat(in.readLine());
    System.out.print("Enter Your Working Hours:");
    hr=Integer.parseInt(in.readLine());
    System.out.print("Enter Your Salary Rate/per Hour:Rs.");
    rate=Integer.parseInt(in.readLine());
    float tsalary=commission+(hr*rate);
    System.out.print("Your Total Salary:Rs."+tsalary);
}

}

public class Inheritance { 
    public static void main(String args[])throws Exception {
        Employee A=new Employee();
        Manager B=new Manager();
        SalesPerson C=new SalesPerson();
        Wage D=new Wage(); 
        A.ComputeSalary();
        B.ComputeSalary(); 
        C.ComputeSalary();
        D.ComputeSalary();
        }
        }

May 2, 2012 at 10:43 AM


For more information, visit the following link:

Java Inheritance









Related Pages:
multilevel inheritance
multilevel inheritance  import java.io.*; public class Employee { int eid; String ename; void tostring() { System.out.print("Enter Your ID:"); eid=Integer.parseInt(in.readLine()); System.out.print("Enter Your
Multilevel inheritance - Java Beginners
Multilevel inheritance  Dear Sir, I'm posting you another question for which I need a more explanatory java coding(A lengthy one with more classes... to multilevel inhertance " Thank You
Java : Multilevel Inheritance
Java : Multilevel Inheritance This section contains concept of multilevel Inheritance in java. Multilevel Inheritance : In multilevel inheritance more than... can say multilevel inheritance create one-to-one ladder. Now you can access
Inheritance,Inheritance in Java,Java Inheritance
; Multilevel Inheritance Pictorial Representation of Simple and Multilevel... Multilevel Inheritance Simple Inheritance When a  subclass is derived...;} } Multilevel Inheritance It is the enhancement of the concept of inheritance. When
Inheritance
; Multilevel Inheritance Pictorial Representation of Simple and Multilevel... Multilevel Inheritance Simple Inheritance When a  subclass is derived...;} } Multilevel Inheritance It is the enhancement of the concept of inheritance. When
Inheritance
; Multilevel Inheritance Pictorial Representation of Simple and Multilevel... Multilevel Inheritance Simple Inheritance When a  subclass is derived...;} } Multilevel Inheritance It is the enhancement of the concept of inheritance. When
multilevel inhertence
multilevel inhertence  package start; class A { protected void a() //a method in A { System.out.println("Class A"); } } class B extends A { public B
Inheritance in Java
of inheritance in Java: Simple Inheritance Multilevel Inheritance... class. Multilevel Inheritance: Multiple Inheritance is when a subclass is derived... for it's just above (parent) class. Multilevel inheritance can go up to any number
Inheritance in Java with example
inheritance Multilevel inheritance. Hierarchical inheritance Note: 1. subclass...: Multilevel inheritance: The Multilevel inheritance is inheriting features... be achieved by interface. In this example we have used multilevel inheritance
inheritance
inheritance  how does one implement inheritance in java
inheritance
inheritance  hi.. pleaseeeeee i need a quick help(answer) in creating aprogrm in java by using inheritance for car in such away that .... Car is parent class and both of Private and Public Car extends it then both of Bus
multiple inheritance.
multiple inheritance.  hello, can java support multiple inheritance???   hi, java does not support multiple inheritance
multiple inheritance
multiple inheritance  why java doesn't support multiple inheritance? we can achieve this by using interface but not with classes? what is the main reason that java community implemented like
Java inheritance
Java inheritance   can the child access protected content of the parent if the child is in a different project   If you have considered different project as different package then the child cannot access the content
Multiple Inheritance
Multiple Inheritance  Why Java Doesn't have Multiple Inheritance It is Advantage or Disadvantage.........   Hi Friend, When we extends... and inconsistencies Java does not support Multiple Inheritance. Thanks
Multiple Inheritance
Multiple Inheritance  All are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined... class so java any how do multiple inheritance? Can you please explain
javascript inheritance framework
javascript inheritance framework  javascript inheritance framework
Inheritance question?
Inheritance question?  Q3)Create a class hierarchy as Company extended by AccountsDepartment. AccountsDepartment extended by AccountsReceivable and AccountsPayables. The Company performs following operations. (1
Inheritance question?
Inheritance question?  Q3)Create a class hierarchy as Company extended by AccountsDepartment. AccountsDepartment extended by AccountsReceivable and AccountsPayables. The Company performs following operations. (1
Inheritance in Spring
Inheritance in Spring       Inheritance Demo, In the example given below we are going to tell about the inheritance in the Spring framework. By inheritance we mean a way
Java: Inheritance
Java: Inheritance More on virtual by default Nested Classes, Part 2 Copyleft 2004 Fred Swartz MIT License
Inheritance
other features like creation and implementation of the object, Inheritance etc
Inheritance in java - Java Beginners
Inheritance in java  I want a example program using the concept of (simple and multiple) inheritance
Inheritance in java - Java Beginners
Inheritance in java  I want a example program using the concept of (single and multiple) inheritance.  Hi Friend, Please visit the following link: http://www.roseindia.net/java/language/inheritance.shtml Thanks
Inheritance
Inheritance        OOPs.... Abstraction 4. Inheritance In OOPs, these concepts are implemented through a class... we will discuss Inheritance briefly:  -- Inheritance is the mechanism
inheritance - Java Beginners
inheritance  help me on inheritance concept in java specialy on overloading and overridding concept
creating inheritance of cars
creating inheritance of cars   hi ... please help me in creating inheritance between some types of cars like car that is parent and both of private car and public car are extends it then bus and truck extends public car
Maven's order of inheritance
Maven's order of inheritance  hello, What is Maven's order of inheritance?   hii, 1.parent pom 2.project pom 3.settings 4.CLI parameters
how can i achieve multiple inheritance in java without using inheritance ?
how can i achieve multiple inheritance in java without using inheritance ?  how can i achieve multiple inheritance in java without using inheritance
Inheritance in Java 7
This tutorial describe concept of Inheritance. It is one of OOPs concept
multiple inheritance - Java Beginners
multiple inheritance  Why java does not support Multiple Inheritance...)why java classes does not support Multiple Inheritance? JAVA CLASSES ONLY... Inheritance. Ans...>java classes doesn't support multiple inheritance,the practical
What are the types of inheritance models in Hibernate?
What are the types of inheritance models in Hibernate?  Hi, What are the types of inheritance models in Hibernate? thanks
What type of inheritance that php supports?
What type of inheritance that php supports?  What type of inheritance that php supports
Inheritance - Java Beginners
Inheritance  pls help me!!! Question: write an inheritance hierachy for classes Quadrilateral,Trapezoid,Parallelogram, Rectangle and Square. Use Quadrilateral as superclass. make hierachy as deep as possible. Specify
Java Inheritance Concept.
Java Inheritance Concept.  Yesterday i got confused with following question in an aptitude exam. Question:Class A,B,C have method named doit(). Class B extends Class A,Class C extends Class B.How will you call method doit
Inheritance java Example
Inheritance java Example  How can we use inheritance in java program?   class Animal { public void eat(String str... of inheritance. Inheritance is a way of establishing a subtype from an existing object
Inheritance and Composition - Java Beginners
Inheritance and Composition  import java.util.*; public class... as simple inheritance. In case of simple inheritance there is only a sub class and it's parent class. It is also called single inheritance or one level
Inheritance Overloading - Java Beginners
Inheritance Overloading  The problem is: I have this program: class Base{ int i = 1; int j = 2; Base(int i, int j){ i = i; j = j; } void m(){ System.out.println(i + j); } } class Child extends
Fresher-Trainee
Fresher-Trainee  a java program to calculate the area of different shapes using Multilevel Inheritance
Inheritance and Composition - Java Beginners
Inheritance and Composition  CAN YOU FIND THE ERROR OF MY CODE JAVA.THIS IS A TEST CLASS.I CANT FIND THE ERROR,CAN YOU FIX IT FRIEND.THANK YOU SO MUCH. import java.util.*; public class TestPet { public static void main
Inheritance problem - Java Beginners
Inheritance problem  hello friend can u please help me that why this program is printing show method of Base_Class b=5 even though i am assigning the Base_Class object into the Super_Class reference i.e Super_Class bc=new
Inheritance and Composition - Java Beginners
Inheritance and Composition  import java.util.*; public class TestPet { public static void main(String[]kevs) { Scanner console=new Scanner(System.in); String type, name, home; int weight, years; char gender
doubt in inheritance program - Java Beginners
doubt in inheritance program  how will we get the result 6 2 5 in the inheritance program in the given example i got 6 &2 but i am confused about 5
Inheritance in Spring
Inheritance in Spring       Inheritance Demo, In the example given below we are going to tell about the inheritance in the Spring framework. By inheritance we mean

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.