实现以下功能
public void actionPerformed(ActionEvent e)
{if(e.getSource()==button1)
{
}
if 内的代码怎么写
实现以下功能
public void actionPerformed(ActionEvent e)
{if(e.getSource()==button1)
{
}
if 内的代码怎么写
public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub if(e.getSource()==button1){ int a = JOptionPane.showConfirmDialog(null, "是否关闭"); if(a ==0) { System.exit(0); }
}
}