When defining a local inner class, is it safe to access local variables of the containing method that only said class has references to. Like so:
public Bar containingMethod()
{
Foo foo = new Foo();
Bar bar = new Bar()
{
public void baz()
{
System.out.println("Accessing foo: " + foo.getValue());
}
};
return bar;
};
In my example above I'm not sure that the class being defined has a reference to foo. The question is if it's safe and OK to do this or am I running the risk of foo being garbage collected before bar.baz() is called?