1. 重载:
a. 方法名相同
b. 参数类型或个数不同
c. 返回只可以相同也一直不同
注:重载不能只有返回值不同
public class Hello{ public static void main(String args[]){ System.out.println("hello owrld"); System.out.println(add(1, 2)); System.out.println(add(1.0f, 2.0f)); } public static int add(int a, int b){ return a + b; } public static float add(float a, float b){//重载 return a + b; } }
方法的参数:
基本数据类型作为参数:方法内对对参数的修改不会影响调用者(传值,相当于局部变量??)
引用类型作为参数:方法内部修改了堆,结果会保留下来(传址???)
public class Hello{ public static void main(String args[]){ int i = 10; System.out.println("i ="+i); int p[] = new int[1]; p[0] = 12; System.out.println("defore func2 = "+p[0]); func2(p); System.out.println("after func2 = "+p[0]); } public static void func1(int i){ i = 100; } public static void func2(int[] p){//传地址 p[0] = 1000; } }
标签:java,int,System,static,println,方法,public,out From: https://www.cnblogs.com/zj-studyrecoding/p/17438697.html