A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wisely 中级黑马   /  2014-7-23 02:11  /  1035 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 wisely 于 2014-7-23 11:11 编辑
  1. class Outer{
  2.         int x=1;
  3.         void method(final int a){
  4.                 //a++;        //为什么加上这句代码就会挂掉
  5.                         //提示错误:不能分配最终参数a
  6.                 final int y=2;
  7.                 class Inner{
  8.                         void function(){
  9.                                 System.out.println(Outer.this.x+":"+y+":"+a);
  10.                         }
  11.                 }
  12.                 new Inner().function();
  13.         }
  14. }

  15. public class Sunday{
  16.         public static void main(String[] args){
  17.                 Outer out=new Outer();
  18.                 out.method(7);
  19.                 out.method(9);
  20.         }
  21. }
复制代码
晚上看视频晕了……提问结束!

4 个回复

倒序浏览
给final变量(相当于常量)二次赋值,当然会挂掉。。。
回复 使用道具 举报
final修饰的变量不能改变初始值
回复 使用道具 举报
受教了,楼上正解!
回复 使用道具 举报
原来是这样的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马