Method over ridding method in java, JAVA Programming

Assignment Help:

Q. Write short on the method over ridding method in java?

Ans. Method over ridding and dynamic binding: We have seen that a method in a super class is inherited by its subclass and is used by the object created by the subclass. Method inheritance enables us to define the method again in the subclass. In the class hierarchy when a instance method the subclass has the same name signature as an instance method (non private) in its super class, then the method in the subclass is said to over ride the method in the super class. When an over ridden method is called from in a subclass, it will always refer to the edition of that method defined by the subclass. The version of the method defined by the super class will be hidden.

Example of method over ridding

Box _ demo java

Class box

{

Int h;

Int w;

Int d;

Box (Int i, Int j, Int k)

{

H = i;

W = j;

D = k;

}

Void show ()

{

System. Out. Println ("box class")

 System. Out. Println (height : " + h)      

System. Out. Println (: "  width+ w)

}

}

Class sub _ box extends box

{

Int i;

Int j;

Int k;

Sub box (Int a, Int b, Int c, Int d, Int e, Int f Int h)

{

Super (d, e, f)

I = a;

J = b;

K = c;

}

Void show ()

{

 

System. Out. Println ("box class")

 System. Out. Println (height : " + h)     

System. Out. Println (: "  width+ w)

}

}

}

Class box _ demo

(

Public static void main (string args[])

{

Sub _ box sb 1 = new sub _ box (10, 20,30, 40, 50, 60);

Sb. Show ();

}

}

Output

Sub _ class of box

Height : 10

Width : 20

Depth : 30

Note when show () method is invoked on an object of type sub _ box the version of show () defined within sub _ box is used, the version of show () method inside sub _ box class over ride declared in box classes.

Application of method over ridding:

Dynamic method binding (dynamic method dispatch or run time binding): method over ridding forms the basic for one java's powerful concept. Dynamic method dispatch is the mechanism by which call to an dynamic method dispatch is an important because this is how java implements run time polymorphism. A super class refers variable can refer to a subclass objects, java uses this fact to resolve calls to over ridden method at run time. When an over ridden method is called through a super class reference, java finds out which version of that method to execute based upon the types of the object being referred to different versions of an over ridden method is called through a super class reference java determines which version of that method to execute based upon the type of the object being referred to at the time of the call referred occurs at this version. Thus this determines is made at run time, when different types of the objects are referred to the different version of an over ridden method of an over ridden method will be called. In other words, it is the kind of the object being referred to (not the type of reference) that determines which version of an over ridden method will be executed. Over ridden method allows java to support run time polymorphism. Polymorphism is essential for OOP for one version. It allows a general class to specify methods that will be common to all of its derivatives while allowing sub classes to define the specific implementation of some of all these methods. By containing inheritance with over ridden methods, a super class can define the general form of method that will be used by all of its sub classes. The ability of existing code libraries to call methods to an instance is a profoundly powerful tool.


Related Discussions:- Method over ridding method in java

Explain what is orm, Object Relational Mapping , its a tool for transaction...

Object Relational Mapping , its a tool for transaction management that requires to be integrated with Spring, Struts etc.Eg : Hibernate, i Batis,JDO etc

Area under the curve, Write a program to find the area under the curve y = ...

Write a program to find the area under the curve y = f(x) between x = a and x = b, integrate y = f(x) between the limits of a and b. The area under a curve between two points can b

Why do we need wrapper classes, Why do we need wrapper classes? It is s...

Why do we need wrapper classes? It is sometimes simpler to deal with primitives as objects. Moreover most of the collection classes keep objects and not primitive data types. A

Java, Ask question Write an inheritance hierarchy for classes Quadrilateral...

Ask question Write an inheritance hierarchy for classes Quadrilateral, Trapezoid, Parallelogram, Rectangle and Square. Use Quadrilateral as the superclass of the hierarchy. Create

Explain different way of using thread, Explain different way of using threa...

Explain different way of using thread? The thread could be executed by using runnable interface or by inheriting from the Thread class. The former is more advantageous, 'cau

Authentication -security component, Authentication is basically an identifi...

Authentication is basically an identification step. Functionality used for J2EE security: Principal : An entity that may be authenticated and identified. Principal n

What is a jsp and what is it used for?, Java Server Pages (JSP) is a platfo...

Java Server Pages (JSP) is a platform independent presentation layer technology that comes with SUN s J2EE platform. JSPs are normal HTML pages with Java code pieces embedded in th

Program for convert temprature and length, Public class ConversionProgram {...

Public class ConversionProgram {  public void start() {    String userChoice = askConversionCategory();   while (userChoice.equals("1") || userChoice.equals("2") || Page 2

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd