日期:2014-05-20  浏览次数:20705 次

JAVA BAR问题
//This is program will not compile 
class Scopeerr { 
  public static void main(String args[]){ 
  int bar = 1; 
  { 
  int bar = 2; 
  } 
  } 

我只想知道这里的bar代表的是什么意思,不通编译我已经知道了,


------解决方案--------------------
bar 表示变量
------解决方案--------------------
局部变量!