java关于Cannot refer to the non-final local variable list defined in an enclosing scope解决方法

Posted shuaibqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java关于Cannot refer to the non-final local variable list defined in an enclosing scope解决方法相关的知识,希望对你有一定的参考价值。

今天学习中遇到了一个问题:

Cannot refer to the non-final local variable list defined in an enclosing scope

 

 

 技术图片

 

 

这里的new Runnable(){...}是一个匿名局部内部类,其访问test()方法的局部变量list就会发生编译错误

解决方法:

用final修饰list

技术图片

 

 

原因:

程序执行test()方法时,在方法的调用栈中生成了局部变量变量list,此时产生了一个局部内部类对象,它访问了该局部变量list,当方法test()运行结束后,局部变量list就已死亡了,不存在了,但:局部内部类对象还可能一直存在(只能没有人再引用该对象时,它才会死亡),它不会随着方法test()运行结束死亡。局部内部类对象和局部变量list的生命周期不一致,局部变量list死后,局部内部类对象不能访问一个不存在的变量。

 

使用final修饰符修饰局部变量list,这时的局部内部类对象将list的“复制品”作为自己的数据成员,当局部变量list死亡以后局部内部类对象依然可以访问list的“复制品”。

 

 

 

 注意:Java8中不写final也能通过编译(会隐式的添加final)

(我的是Java7)

以上是关于java关于Cannot refer to the non-final local variable list defined in an enclosing scope解决方法的主要内容,如果未能解决你的问题,请参考以下文章

关于An association from the table refers to an unmapped class

Android开发 Error:The number of method references in a .dex file cannot exceed 64K.

关于报错stale element reference: element is not attached to the page document处理

cvc-elt.1: Cannot find the declaration of element 'beans'Failed to read schema document '

关于An association from the table XX refers to an unmapped class错误

java报错:The reference to entity "characterEncoding" must end with the ';' delimite(