我創建了一個動作監聽器,監聽,如果有一個departingStop(組合框對象)的Java:添加相同的動作監聽muliple組合框
departingStop.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//Lots of code here
}
});
我想也添加任何變化這個動作監聽另一個組合框(finalStop),而不必創建一個單獨的監聽器,如下:
finalStop.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//Lots of code here
}
});
如何才能實現這一目標?謝謝
這個動作監聽器是匿名的,你需要的是被設置爲兩個 –