ActionListener a1 = new ActionListener()
{
??????public void actionPerformed(ActionEvent e){
????????????String name =
??????????????????((JButton)e.getSource()).getText();
????????????txt.setText(name);
??????}
};
?
這是一個Button的ActionListener,使用了無名內(nèi)隱類。我又一個問題,為什么這樣new ActionListener()可以呢???ActionListener可是一個interface啊。。。。能直接調(diào)用interface的construct嗎????