Java:Cannot refer to the non-final local variable holderItemNews defined in an enclosing scope

匿名内部类不能引用非final类型变量?为什么?大神讲解一下?

如果Java允许匿名内部类访问非final的局部变量的话,那我们就可以在TryUsingAnonymousClass$1中修改paramInteger,但是这不会对number的值有影响,因为它们是不同的reference。

这就会造成数据不同步的问题

名为number的局部变量是作为构造方法的参数传入匿名内部类的。

所以,谜团解开了:Java为了避免数据不同步的问题,做出了匿名内部类只可以访问final的局部变量的限制。

温馨提示:内容为网友见解,仅供参考
第1个回答  2015-06-04
holderItemNewa是方法内的变量 ?那需要加final限制。。。。换成类变量,就不需要。本回答被网友采纳
第2个回答  推荐于2018-02-26
刚刚想了半天,觉得自己对这个理解还不是很深刻,这里给个CSDN的博客,我觉得对为什么匿名内部类不能引用非final类型变量讲的很详细,楼主可以参考一下。
http://blog.csdn.net/salahg/article/details/7529091本回答被提问者采纳

记录神经元活性的电生理方法-1: 神经元放电特性及电生理平台组成_百度...
The amplifier can also measure the cell membrane potential in response to the movement of current. To initiate current movement, the experimenter can deliver a voltage command (钳制电压) to the cell, and the cell will respond by passing the current necessary to maintain that voltage command. (...

相似回答