Home Tutorial Java Iterator Iterator Java Size

 
 

Iterator Java Size
Posted on: November 4, 2009 at 12:00 AM
In this section of tutorial we will learn how to use the size() method in context of Iterator. We will create an example to display the contents of the ArrayList using size() method.

  • The Java Iterator size() is the method of the collection Interface.
  • It is implemented in all collection classes.
  • It returns the no of elements present in the collection.


Java Size Iterator Example
import java.util.*;

public class size {

	public static void main(String[] args) {
		List list = new ArrayList();
		String country[] = { "India", "Japan", "USA", "UK", "Nepal" };
		for (int i = 0; i < 5; i++) {
			list.add(country[i]);
		}
		Iterator i = list.iterator();
		int x = 0;
		while (x






					
					

Related Tags for Iterator Java Size:


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.