1.函数名相同
2.参数个数不同或者参数类型不同
3.函数重载和返回值类型无关
//函数的重载 public static void get() { System.out.println("123"); } public static int get(int a ) { return a ; }
1.函数名相同
2.参数个数不同或者参数类型不同
3.函数重载和返回值类型无关
//函数的重载 public static void get() { System.out.println("123"); } public static int get(int a ) { return a ; }
转载于:https://www.cnblogs.com/luguankun/p/10431034.html