how you will prevent method overriding?
Answers were Sorted based on User's Feedback
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 |
Answer / murali.25
you also prevent overriding by making the method static
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / sonam
You can prevent method overriding by declared method as
static
| Is This Answer Correct ? | 0 Yes | 4 No |
What is better - 'bit-shift a value' or 'multiply by 2'?
what is Thread?
What is a databasemetadata?
When do we use synchronized blocks and advantages of using synchronized blocks?
What is a variable simple definition?
What is the use of protected in java?
Does anyone still use java?
Which of the classes will have more memory allocated?
How do you use compareto in java?
How to create a base64 decoder in java8?
What is the argument in java?
Can an interface have a class?