如下,这个我始终转不过来。求大神用通俗易懂的语言帮我解释一下。。
public class Demo1 {
public static void main(String[] args) {
Person p = new Person();
getTest(p);
}
public Person getSum(){
Person p = new Person();
return p;
}
public static void getTest(Person p){
System.out.println(p);
}
}