JOptionPane 是或否窗口
2022-09-03 08:21:15
我正在尝试创建带有“是”或“否”按钮的消息。然后,将出现一个窗口,其中包含一条消息,该消息取决于用户是单击“是”还是“否”。
这是我的代码:
public class test{
public static void main(String[] args){
//default icon, custom title
int n = JOptionPane.showConfirmDialog(
null,
"Would you like green eggs and ham?",
"An Inane Question",
JOptionPane.YES_NO_OPTION);
if(true){
JOptionPane.showMessageDialog(null, "HELLO");
}
else {
JOptionPane.showMessageDialog(null, "GOODBYE");
}
System.exit(0);
}
}
现在,无论您是否按“是”或“否”,它都会打印HELLO。当用户选择“否”时,如何让它显示“再见”?