我正在做作业,要完成此任务,需要一个确认对话框来检查人们是否单身或已婚。但问题是我不允许使用数组。我有搜索其他答案,但都使用数组。

如何在不使用数组的情况下更改showConfirmDialog中的文本?

最佳答案

请参见JOptionPane.showConfirmDialog(parent,message)。例如。

int result = JOptionPane.showConfirmDialog(parent, "Are you married?");

07-27 18:40