class Dem
{
String temp = "hello";
}
public class Demo
{
public static void main(String args[])
{
Dem d1 = new Dem();
d1.temp = "world";
System.out.println("调用之前"+ d1.temp);
fun(d1);
System.out.println("调用之后" + d1.temp);
}
public static void fun(Dem d2)
d2.temp = "MLDN";
}
}
那个大神帮忙解释一下,最好能够画个内存示意图,谢谢啦 |
|