巧妙使用数组,内部匿名类改变外部类final对象值

来源:互联网 发布:大数据脱敏技术 编辑:程序博客网 时间:2024/05/22 01:38
final boolean confirmFlag[] = new boolean[]{false}; SwingUtilities.invokeLater(new Runnable() {@Overridepublic void run() {Object[] options = { "确定", "取消" };int response = JOptionPane.showOptionDialog(PosMain.this, mergeMsg.toString(), "提示",JOptionPane.YES_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[1]);if (response == 0) confirmFlag[0] = true;}});

0 0