|
Develop a program to implement
the concept of inheritance with method overriding.
Program import java.util.Scanner; class ABC { int i; int j; void accept() { Scanner sc=new Scanner(System.in); System.out.println("Enter the value of i:"); i=sc.nextInt(); System.out.println("Enter the value of j:"); j=sc.nextInt(); } void display() { System.out.println("Value of i is "+i); System.out.println("Value of j is "+j); } } class XYZ extends ABC { int k; ABC obj1=new ABC(); void accept() { super.accept(); Scanner ob=new Scanner(System.in); System.out.println("Enter the value of k:"); k=ob.nextInt(); } void display() { super.display(); System.out.println("The value of k is "+k); } } class Inheritance { public static void main(String args[]) { XYZ obj=new XYZ(); obj.accept(); obj.display(); } } |
|
See also
Ask It in The Java Forum Java Books
Return to : Java Programming Hints and Tips All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|