Current location - Quotes Website - Signature design - What does the method signature mean?
What does the method signature mean?

A method signature consists of the method name and a parameter list (the order and type of the method's parameters).

The method signature should be as follows, and the corresponding variable parameters are declared using String and Exception respectively:

Log.log(String message, Exception e, Object... objects) { ...}