如何在while循环中使用JOptionPane?

时间:2014-05-11 22:39:13

标签: java while-loop

下面的代码段是更大程序的一部分,但我认为这是我遇到问题的地方。所以,我试图使用while循环来反复询问输入,直到程序完成,对话框没有出现,我不知道为什么。如果有人能看一看并告诉我自己做错了什么,我真的很感激。如果你想看整个节目,请告诉我。

代码

        boolean done = true;

        while(!done)
        {
            Grid grid = new Grid();
            boolean userDone = true;
            int compRandom = (int) (Math.random() * 9) + 1;

            String input1 = JOptionPane.showInputDialog("Please input a number 1-9 for where you would like to place your piece: ");
                Integer input = Integer.parseInt(input1);

1 个答案:

答案 0 :(得分:0)

    boolean done = true;

必须是

    boolean done = false;