aspose file tools
The moose likes Java in General and the fly likes question about for loop Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "question about for loop " Watch "question about for loop " New topic
Author

question about for loop

PradeepPillai Pradeep
Ranch Hand

Joined: Nov 15, 2005
Posts: 183
May be I forgot. Can somebody tell me what is the following for loop means.

for(Object entryObject : getMap().entrySet() )
I Wayan Saryada
Ranch Hand

Joined: Feb 05, 2004
Posts: 83

It's the for..each loop style in Java. It can be read as "repeat for each object in the map's entry set".


Website: Learn Java by Examples
PradeepPillai Pradeep
Ranch Hand

Joined: Nov 15, 2005
Posts: 183
Thank you.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: question about for loop
 
Similar Threads
Codes For Practice
WA #1.....word association
WA #2 ..... word association
while loop
for and while loops