[求助]弱弱的问个问题~~
用JCreator自动生成的代码中下面这段话看不懂,addActionListener不是一个接口吗?怎么还能New它呢?// Add action listener.for the menu button
menuFileExit.addActionListener
(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
testFrame.this.windowClosed();
}
}
);