阅读量:0
在Java中,您可以通过实现ActionListener接口来编写回调函数。以下是一个简单的示例:
import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class MyActionListener implements ActionListener { @Override public void actionPerformed(ActionEvent e) { // 在这里编写您的回调函数逻辑 System.out.println("Button clicked!"); } }
在上面的示例中,我们创建了一个实现ActionListener接口的类MyActionListener,并重写了actionPerformed方法。在这个方法中,您可以编写按钮点击后要执行的逻辑。
要在Swing应用程序中使用这个回调函数,可以将它添加到按钮上,如下所示:
import javax.swing.JButton; import javax.swing.JFrame; public class Main { public static void main(String[] args) { JFrame frame = new JFrame("ActionListener Example"); JButton button = new JButton("Click Me"); button.addActionListener(new MyActionListener()); frame.add(button); frame.setSize(300, 200); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }
在上面的示例中,我们创建了一个JFrame,并将一个按钮添加到它上面。然后,我们实例化MyActionListener类,并将其添加为按钮的ActionListener。当按钮被点击时,MyActionListener中的actionPerformed方法将被调用,并输出"Button clicked!"。
通过这种方式,您可以编写Java ActionListener的回调函数。