Why do we use final keyword with anonymous inner classes?

走远了吗. 提交于 2019-11-27 02:06:26

问题


I'm currently preparing the S(O)CJP, with the Sierra & Bates book.

About inner classes (method local or anonymous), they say that we can't access the local variables because they live on the stack while the class lives on the heap and could get returned by the method and then try to have access to these variables that are on the stack but do not exist anymore since the method has ended...

As we all know, we can bypass this by using the final keyword. This is what they say in the book but they don't really explain what's the effect of that final keyword... As far as i know, using the final keyword on a method local variable doesn't make it live on the heap... So how would the class be able to access a final variable that still lives on the stack while there could be no more stack???

I guess there should be some kind of "copy" of this final local variable inside the inner class. Since the value can't change, why not duplicating this information... Can someone confirm this or tell me if i'm missing something?


回答1:


Your intuition is correct, because the variable is final it is safe to make a copy of it. Of course for reference types this means copying the reference to the object and not the object it refers to.




回答2:


The compiler uses subtle trickery copying the final reference under the covers to let the inner class get to the final field in the outer class. The copying is why the field must be final so the value does not change.

See e.g. http://tech-read.com/2008/06/19/why-inner-class-can-access-only-final-variable/



来源:https://stackoverflow.com/questions/7076773/why-do-we-use-final-keyword-with-anonymous-inner-classes

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!