【发布时间】:2016-05-03 10:10:43
【问题描述】:
我的class MainFrame extends JFrame 类中有这两种方法:
// METHOD 1
private void connectBtnActionPerformed(ActionEvent evt) {
controller.connectDatabase();
}
// METHOD 2
public void exitBtnActionPerformed(WindowEvent evt) {
int confirmed = JOptionPane.showConfirmDialog(null,
"Are you sure you want to exit the program?", "Exit Program Message Box",
JOptionPane.YES_NO_OPTION);
if (confirmed == JOptionPane.YES_OPTION) {
controller.exitApplication();
}
}
这怎么能调用 METHOD 1:
JMenuItem mntmOpenDatabase = new JMenuItem("Open a Database");
mntmOpenDatabase.addActionListener(this::connectBtnActionPerformed);
...替换这个:
mntmConnectToDB.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
connectBtnActionPerformed(evt);
}
});
但是这个(在class MainFrame extends JFrame的初始化器中):
addWindowListener(this::exitBtnActionPerformed);
...调用方法 2,当我尝试替换它时不起作用:
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
exitBtnActionPerformed(evt);
}
});
相反,它给了我这个错误:
- The method addWindowListener(WindowListener) in the type Window is not applicable for the arguments
(this::exitBtnActionPerformed)
- The target type of this expression must be a functional interface
【问题讨论】:
标签: java swing methods reference