Home Java Example Java Util Collection Iterate Example



Collection Iterate Example
Posted on: April 16, 2007 at 12:00 AM
In this Example you will learn you will learn how to iterate collection in java.

Collection Iterate Example

     

In this section, you will get the detailed explanation about the hasNext() method of interface Iterator. We are going to use hasNext() method of interface Iterator in Java. The description of the code is given below for the usage of the method.

Description of the code:

Here, you will get to know about the hasNext() method through the following java program. True is return by this method in case the iteration has more elements. This means that if the iteration has more elements then the hasNext() method will return true rather than throwing an exception. 

In the program code given below, we have taken a string of elements. We have converted this string of elements into a list of array and then we have applied the hasNext() method which returns true because there are more elements in the list. Hence we get the following output.

Here is the code of program:

import java.util.*;

public class hasNext{
  public static void main (String args[]) {
  boolean b;
  String elements[] = {"Blue""Grey""Teal"};
  Set s = new HashSet(Arrays.asList(elements));
  Iterator i = s.iterator();
  if (b = i.hasNext()){
  System.out.println(b);
  }
  }
}

Output of the program:

C:\unique>javac hasNext.java

C:\unique>java hasNext
true

C:\unique>

Download this example.

 

Related Tags for Collection Iterate Example:
javacidecollectionsiovicollectionthisidshowexampleprogramtoramiterateexamrunwssheitdessectioncaninmcajesrunninghowproratexaxampscolatishallcollectmplcollectvassthshoavhatpleplpronogrolo


More Tutorials from this section

Ask Questions?    Discuss: Collection Iterate Example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.