[求助]关于匿名类的生命周期???
class TestPanel extends JPanel[
public TestPanel()
{
makeButton("yello",Color.YELLO);
makeButton("blue",Color.BLUE);
makeButton("red",Color.RED);
}
void makeButton(String name,final Color c)
{
JButton button=new JButton(name);
add(button);
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
setBackGround(c);
}
});
}
}
以上程序主函数略.
红字部分的生命周期不是在makeButton运行完后就结束吗,那为什么在点击按钮后还是会有响应.请帮忙解答下,谢谢!!!!
[此贴子已经被作者于2007-3-5 21:03:46编辑过]