java执行内存分析
`public class Test1{
int x;
int y;
// Test1(int x2,int y2)
// {
// x=x2;
// y=y2;
// }
void m(int x1,int y1)
{
x=x1;
y=y1;
}
public static void main(String[] args)
{
Test1 t=new Test1();
t.m(1,1);
}
}`
当执行完m()函数后,x1,y1消失
当执行完main函数后,堆中的对象被回收,栈中t消失