how you will prevent method overriding?

Answers were Sorted based on User's Feedback



how you will prevent method overriding?..

Answer / ravi

by declaring the method has a final

Is This Answer Correct ?    24 Yes 1 No

how you will prevent method overriding?..

Answer / neelam,noida

final method can not overridden

Is This Answer Correct ?    22 Yes 0 No

how you will prevent method overriding?..

Answer / ravikiran

bu marking the method final

Is This Answer Correct ?    13 Yes 1 No

how you will prevent method overriding?..

Answer / sumit

One can prevent method overriding by marking the method final. if you make a method static and reuse it in the subclass it will hide the the super class method. This is called method hiding rather than overriding.

Is This Answer Correct ?    6 Yes 0 No

how you will prevent method overriding?..

Answer / murali.25

you also prevent overriding by making the method static

Is This Answer Correct ?    3 Yes 6 No

how you will prevent method overriding?..

Answer / sonam

You can prevent method overriding by declared method as
static

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More Core Java Interview Questions

Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?

0 Answers  


how to transactions(Bank transactions) in business process in ejb?

1 Answers   Photon,


Difference between this() and super() in java ?

0 Answers  


Which are the two subclasses under exception class?

0 Answers  


What is meant by Java interpreter?

4 Answers  






Outline the major features of java.

0 Answers  


What does += mean coding?

0 Answers  


Explain the significance of class loaders in bootstrap?

0 Answers  


What are inbuilt functions?

0 Answers  


What is a package in java? List down various advantages of packages.

0 Answers  


class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.

2 Answers   Yamaha,


What are the differences between graph and tree?

0 Answers   Amazon,


Categories