java swing 关闭提示框后程序为何没退出 20
publicstaticvoidmain(String[]args){JOptionPane.showMessageDialog(null,"WARNING_MESSAG...
public static void main(String[] args) {
JOptionPane.showMessageDialog(null, "WARNING_MESSAGE", "警告", JOptionPane.WARNING_MESSAGE);
}
运行程序,弹出提示框,把提示框关闭后程序还在运行状态是怎么回事 展开
JOptionPane.showMessageDialog(null, "WARNING_MESSAGE", "警告", JOptionPane.WARNING_MESSAGE);
}
运行程序,弹出提示框,把提示框关闭后程序还在运行状态是怎么回事 展开
1个回答
展开全部
import javax.swing.JOptionPane;
public class Kaiba
{
public static void main(String[] args)
{
int x = JOptionPane.showConfirmDialog(null, "确认退出么?", "友情提示", JOptionPane.OK_CANCEL_OPTION,
JOptionPane.WARNING_MESSAGE);
System.out.println(x);
if(x == 0)
{
System.exit(0);
}
}
}
追问
showmessagedialog 怎么处理
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询