獲取refecence噸contining比如我有以下代碼:從匿名類
class Foo
{
public Foo()
{
new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
// how can I use a reference to Foo here
}
}
}
}
我可以使用當前Foo
實例的成員變量從內actionPerformed
。我使用this
我得到ActionListener
的實例。但是我怎樣才能得到當前Foo
實例本身的參考?
http:// st ackoverflow.com/questions/1816458/getting-hold-of-the-outer-class-object-from-the-inner-class-object – Reimeus