5.9.Overloading Methods
The Java programming language allows methods within a class to share the same name despite having distinct parameter lists. This is useful for a class that has methods for rendering various data types, such as strings and integers. By assigning the same name to all drawing methods while passing a distinct parameter list, the class can efficiently handle data types like “draw” and avoid assigning new names to each method.
public class DataArtist { ... public void draw(String s) { ... } public void draw(int i) { ... } public void draw(double f) { ... } public void draw(int i, double f) { ... } }
The compiler recognizes distinct methods based on the type of parameters they pass. The draw(String s) and draw(int i) methods are distinct due to their unique argument types. Multiple methods with the same name, quantity, and type are not allowed. The return type is not considered when differentiating methods. Overloaded methods can significantly reduce code readability, so caution is advised when using them.