黑马程序员技术交流社区

标题: 为什么结果是1 啊 ,求大神解释 [打印本页]

作者: 铁蛋    时间: 2015-9-6 15:26
标题: 为什么结果是1 啊 ,求大神解释
  1. interface Face
  2. {
  3.         int counter = 40;

  4. }
  5. class Select implements Face
  6. {
  7.         private static int counter;
  8.         public static void main(String[] args){
  9.                 System.out.println(++counter);
  10.         }
  11. }
复制代码

作者: 李玉    时间: 2015-9-6 15:36
局部变量优先级最大,且int变量初始值为0。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2