Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1097263
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:24:23+00:00 2026-05-17T00:24:23+00:00

I have to iterate through an arraylist in this manner. ArrayList<Integer> li = new

  • 0

I have to iterate through an arraylist in this manner.

ArrayList<Integer> li = new ArrayList<Integer>();
li.add(20);
li.add(30);
li.add(40);
li.add(50);
li.add(70);

for (int i = 0; i < li.size() - 1; i++)
    System.out.println(li.get(i) + " " + li.get(i + 1));

Output:

20 30
30 40
40 50
50 70

How to do the same using an iterator?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T00:24:24+00:00Added an answer on May 17, 2026 at 12:24 am

    Use two iterators. I tested this and it worked for me.

        Iterator<Integer> first = li.listIterator();
    
        // Will raise IndexOutOfBoundsException if list is empty.
        Iterator<Integer> second = li.listIterator(1);
    
        while (second.hasNext()) {
            System.out.println(first.next() + " " + second.next());
        }
    

    Edit: No need for inner if. Silly me.

    Explanation: the listIterator(index) method returns an iterator that starts at the specified position in the list where as listIterator() returns an iterator that starts at position zero.

    The first iterator therefore starts at 0 and the second starts at 1. Then it is merely a question of printing the next() on both. This will work irrespective of whether the number of elements in the list is odd or even.

    Edit 2

    My logic fu is very weak today. Thanks @barjak for pointing out the case about the empty list and the unnecessary first.hasNext().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code which iterates through ArrayList<String> towns = new ArrayList<String>(); using JSTL
I have an array list: private ArrayList<PerfStatBean> statFilterResults; I want to iterate through it
Ok, this is homework. I have an arraylist assignment to add, display, search and
Say I have components that I need to iterate through, for example From and
I have a list of questions that the user will iterate through, they can
I have a FormCollection and I just want to only iterate through the keys
I have a property within a class, that I need to iterate through all
I have a deserialized xml c# objet. I need to iterate through the oject
I have a simple Dictionary(of String, Object) that I need to iterate through and
I have written the following code in Perl. I want to iterate through a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.