I have a stupid confusion, when we override the parent class method then does this derived overridden method still hold the code of parent class method, or it is a new fresh method which we can define?
|
|
Read this article to get concept clear. http://docs.oracle.com/javase/tutorial/java/IandI/override.html Generally we do when we want to extend the method of super class or to want to change the complete logic. For ex: Super class have sorting method which use bubble sort. In Derived class you want to take same method but want to implement quick sort. Then we do overriding. Second If you want to execute super class method first then your sub class overriden method logic then we use Last to point of your question If you override the method and not called super class method like |
||||
|
|
|
what happens is exactly what's written in the annotation. you override the method and instead of running the parent code for the method, it runs the current class's code |
|||
|
|

