Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the same iterator again and again?

Tags:

java

iterator

Given the next code :

// this is a part of some large method //

        ArrayList<String> players = this.m_maze.getPlayers();

    // define the first node to be the human player , and pop him from the list 
    // the rest of the nodes are the computer side 

    Iterator<String> iterator = players.iterator();

    // human side 
    String humanPlayer = iterator.next();


    // controller - start a game between the players , at least two players are playing 
    while (this.m_rounds > 0)  
    {


        String[] choices = this.m_view.getChoiceFromUser();

        int usersChoice = Integer.parseInt(choices[0]);

        switch (usersChoice)
        {
            case 1:   // then user chose to stay put 
            {

            }

            case 2:   // then take the next step
            {
                // let the user make his move

                this.m_maze = this.m_model.makeSomeMove(choices[1],humanPlayer,true);

                // print out the maze for visualization
                this.m_view.drawMaze(m_maze);

                // controller - reduce the number of current rounds for the current game 
                this.m_rounds--; 
            }

            case 31:   // then user asked for the closest treasure
            {
                //  put some code here later on
            }


            case 32:   // then user asked for the nearest room 
            {
            //  put some code here later on
            }

        }  // end switch case

    } // end while 

(1).How can I place in humanPlayer the first element of the ArrayList after each time that I invoke makeSomeMove ?

(2).Is it possible to reuse an iterator ? since I use the hasnext() and next() ... ?

Many thanks Ron

like image 337
JAN Avatar asked Jan 31 '26 22:01

JAN


1 Answers

If you want to reuse the iterator, you have to re-initialise it.

You have to execute Iterator<String> iterator = players.iterator(); whenever you want to reuse the iterator.

like image 163
Ravindra Gullapalli Avatar answered Feb 02 '26 15:02

Ravindra Gullapalli



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!