<< Chapter < Page Chapter >> Page >

The code in Listing 2 is straightforward and shouldn't require further explanation.

Get and use an iterator

An iterator is an object instantiated from a specially designed class that implements the Iterator interface. The design of the class makes it possible for client code to gain sequential access to each element encapsulatedin an associated collection object without a requirement to know anything about how the collection is structured.

Required syntax

The first statement in Listing 3 shows the syntax required to get and save a reference to a generic iterator for the ArrayList object instantiated earlier in Listing 1 .

Listing 3 - An iterator.
//Get an iterator Iterator<Date>iter = var1.iterator();//Perform the iteration while(iter.hasNext()){System.out.println(iter.next().getTime()); }//end while loopSystem.out.println();//blank line

Note the requirement to qualify the declaration of the local variable named iter with the type of data stored in the collection using angle-bracket notation similar to that used earlier.. You might think of this as a variable capable of holding areference to an iterator object, which is capable of iterating on an ArrayList object, which in turn is capable of storing references to objects of type Date only.

Perform the iteration

The remaining code in Listing 3 uses the iterator to sequentially access and display information encapsulated in each of the three Date objects whose references are stored in the ArrayList object. This is standard code for the use of an iterator and should not require further explanation.This code produces the first three lines of text (plus the blank line) shown in Figure 5 .

Figure 5 - Iterator output.
1378070280877 13781566808771378243080877 13780702808771378156680877 1378243080877

The program output

The output produced by this program depends on when you run it. The output produced for one particular run is shown in Figure 5 .

The output will be different each time you run the program depending on the current date and time.

The enhanced for loop

The code in Listing 4 performs the same iteration using the new enhanced for loop that was released in Java version 1.5.

Listing 4 - Enhanced for loop.
//Now perform the same iteration using // the new for-each construct.for(Date element : var1){ System.out.println(element.getTime());}//end for-each }//end runIt

You might think of this syntax as meaning:

For each element of type Date contained in the collection referred to by var1 , get the value of the element and save it in the variable named element . Then use the contents of that variable to perform the operations specified within the body of the loop.

More compact syntax

As you can see, this approach does not require you to get an iterator and to explicitly use that iterator to sequentially access the elements in thecollection. Thus, the syntax is more compact than the syntax shown in Listing 3 . Further, by eliminating the requirement to get the iterator, this construct also eliminates the requirement for you to qualify the code usingthe angle-bracket syntax. All of those details are handled automatically behind the scenes.

Questions & Answers

what is microbiology
Agebe Reply
What is a cell
Odelana Reply
what is cell
Mohammed
how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask