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

What is color in awt, What is Color in AWT? Color is a class in the AWT...

What is Color in AWT? Color is a class in the AWT. Individual colors such as red or mauve are examples of this class, java.awt.Color. Be sure to import it if you want to use ot

Insert admob code into android application, Need to Insert Admob Code Into ...

Need to Insert Admob Code Into Android Application Project Description: We are seeking Android developer to add Admob code in to our application. It should be very simple

Difference between java mail and jms queue, JMS is the ideal high-performan...

JMS is the ideal high-performance messaging stage for intra business messaging, with full programmatic control over quality of service and delivery options. JavaMail gives lowes

What is mvc, Model-View-Controller (MVC) is a design pattern put together t...

Model-View-Controller (MVC) is a design pattern put together to help control change. MVC decouples interface from business logic and data. ? Model: The model having the core of

Expertise in gps or navigation app coding, Project Description: Two co-f...

Project Description: Two co-founders are in search of a developer to join us to launch a tech startup. We have experience at fortune 500 companies, elite consulting firms, etc.,

List the precedence table, List the precedence table? At last let's add...

List the precedence table? At last let's add the && , || , & , | and ? operators to the precedence table *, /, % Multiplicative operators +, - Additi

Posting on a wall, Viewing a User's Wall Where your project allows you t...

Viewing a User's Wall Where your project allows you to view a user's profile, your ZHTML must provide the following capabilities: 1. Provide a Wall for that user profile, dis

Design a game in java, Ten pigs were all in a pen, enjoying their morning s...

Ten pigs were all in a pen, enjoying their morning slop when a bird flew down from a nearby tree and began picking all the best bits out from the trough. This greatly perturbed the

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