Methods store a block of code and can be called in the program for certain functioning. In Java Overloading and Overriding are the two main concepts in methods. Writing two or more methods using the same name of the method in the same class is called Method overloading. But here passing of parameters is different. Using of the method names in different classes is called Method overriding. Here, child class uses the methods of the parent class. Both of these methods have different purposes to implement. Let us check out some of the main differences between them.
↧