Java 方法签名

方法签名格式:

  方法名   参数列表

例如:

public class A{
     protected int method (int a, int b) {
         return 0;
     }
 }
class B extends A{
    private int method(int a,long b){
        return 0;
    }
}

它们的方法签名就是:method  (int  int)

原文地址:https://www.cnblogs.com/chuijingjing/p/9460790.html