Medium
What is the difference between overriding and overloading ?
Author: SamuelStatus: PublishedQuestion passed 471 times
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about OOP
8
Overrided method visibility must be the same or less restrictive than the inherited method.7
Inheritance in OOP.4
Can a class implements several interfaces ?4
When can you do a+b in OOP ?1
In this code, the class B extends the class A. The class B overrides the method talk() from the class A. The object b is an instance of the class B. The object a is an instance of the class A. The object a is assigned to the object b. The object a calls the method talk(). The method talk() from the class B is called.