Do Java8 lambdas maintain a reference to their enclosing instance like anonymous classes?

前端 未结 2 422
一向
一向 2020-12-01 06:32

We know that anonymous classes maintain a reference to their enclosing instance and that this can lead to context leaks on Android.

Since retrolambda backports lamb

2条回答
  •  眼角桃花
    2020-12-01 06:54

    Lambda expressions and method references capture a reference to this only if required, i.e. when this is referenced directly or an instance (non-static) member is accessed.

    Of course, if your lambda expression captures the value of a local variable and that value contains a reference to this it implies referencing this as well…

提交回复
热议问题