私は2つのActionListenerにActionListenersはどのようにメモリに設定されていますか?
Category cat = new Category();
//this is launched second
submit.addActionListener(new ConfirmListener(new CategoryService(), cat));
//this is launched first. Set values
submit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String title = field.getText();
cat.setTitle(title);
}
});
、彼らがスタックに置かれており、彼らはポップとして、それらが起動されていのJButtonを提出していますか? 2番目のリスナーはオブジェクトの値を設定し、最初のリスナーはオブジェクトを使用しています。