Computer Science, asked by malavikamurali7001, 1 year ago

What is a method signature in Java?

Answers

Answered by adityarajput66
1

In Java, a method signature is part of the method declaration. It's the combination of the method name and the parameter list. The reason for the emphasis on just the method name and parameter list is because of overloading. It's the ability to write methods that have the same name but accept different parameters.

Similar questions