日期:2014-05-20 浏览次数:20609 次
public int getAInt(){ int a = 4;//局部变量,基本类型,创建在栈上 return a; } //在此方法运行结束后,该方法的栈应该被消除了 //那么返回的是什么呢?