JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

Program: How to iterate through collection objects?


Description:

You can iterate through any collection object by using Iterator object. It provides two methods to iterate. The hasNext() method returns true if the iteration has more elements. The next() method returns the next element in the iteration. Below example shows how to iterate through an ArrayList.


Code:
package com.java2novice.iterator;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class MyCollectionIterator {

	public static void main(String a[]){
		
		List<String> myList = new ArrayList<String>();
		myList.add("Java");
		myList.add("Unix");
		myList.add("Oracle");
		myList.add("C++");
		myList.add("Perl");
		Iterator<String> itr = myList.iterator();
		while(itr.hasNext()){
			System.out.println(itr.next());
		}
	}
}

Output:
Java
Unix
Oracle
C++
Perl
 Next Program >>

List Of Iterator Sample Programs:

  1. How to iterate through collection objects?
  2. How to remove an element from collection using Iterator object?
Knowledge Centre
Can we override static method?
We cannot override static methods. Static methods are belogs to class, not belongs to object. Inheritance will not be applicable for class members
Famous Quotations
Do not confuse motion and progress. A rocking horse keeps moving but does not make any progress.
-- Alfred A. Montapert

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.