<< Chapter < Page Chapter >> Page >
"Returns an iterator over the elements in this list in proper sequence."

As a result, the code shown in Listing 5 , along with the overridden toString method of the MyClass class causes the program to display the elements in the following order:

443521 .

Listing 5 . Display using an iterator.
iter = ref.iterator(); while(iter.hasNext()){System.out.print(iter.next()); }//end while loop

Duplicates are allowed in a List

One final thing that is worthy of note in this program is that a List objects allows duplicates. Hence, the populated collection contains referencesto two separate objects that are equal to one another in the sense that they both contain thesame values in their instance variables.

One more sample program

Let's take a look at one more sample program. What output is produced by the program shown in Listing 6 ?

  • A. Compiler Error
  • B. Runtime Error
  • C. 44321
  • D. 4321
  • E. 1234
  • F. 12344
  • G. None of the above.
Listing 6 . The program named Comparable03.
//File Comparable03.java import java.util.*;public class Comparable03{ public static void main(String args[]){ new Worker().doIt();}//end main() }//end class Comparable03class Worker{ public void doIt(){Iterator iter; Collection ref;ref = new ArrayList(); Populator.fillIt(ref);iter = ref.iterator(); while(iter.hasNext()){System.out.print(iter.next()); }//end while loopSystem.out.println(); }//end doIt()}// end class Worker class Populator{public static void fillIt(Collection ref){ ref.add(new MyClass(4));ref.add(new MyClass(4)); ref.add(new MyClass(3));ref.add(new MyClass(2)); ref.add(new MyClass(1));}//end fillIt() }//end class populatorclass MyClass{ int data;MyClass(){ data = 0;}//end noarg constructor MyClass(int data){this.data = data; }//end parameterized constructorpublic String toString(){ return "" + data;}//end overridden toString() }//end MyClass

If you selected C. 44321 , you are correct.

No need to cast to type List

As shown in Listing 7 , this program takes a different approach to solving the problem originally exposed in the program shown in Listing 1 .

Listing 7 . No need to cast to type List.
class Populator{ public static void fillIt(Collection ref){ ref.add(new MyClass(4));ref.add(new MyClass(4)); ref.add(new MyClass(3));ref.add(new MyClass(2)); ref.add(new MyClass(1));}//end fillIt() }//end class populator

This program does not change the type of the incoming reference to the ArrayList object in the fillIt method. Rather, it continues to treat the incoming reference as type Collection , and calls the version of the add method that is declared in the Collection interface. This avoids the requirement to cast the incoming reference to type List .

The contract for this version of the add method in the List interface is

"Appends the specified element to the end of this list (optional operation)."

As a result, the new elements are added to the collection in increasing index order. Since an iterator on a List returns the elements in increasing index order, this program displays the elements in the same order that they areadded.

Questions & Answers

calculate molarity of NaOH solution when 25.0ml of NaOH titrated with 27.2ml of 0.2m H2SO4
Gasin Reply
what's Thermochemistry
rhoda Reply
the study of the heat energy which is associated with chemical reactions
Kaddija
How was CH4 and o2 was able to produce (Co2)and (H2o
Edafe Reply
explain please
Victory
First twenty elements with their valences
Martine Reply
what is chemistry
asue Reply
what is atom
asue
what is the best way to define periodic table for jamb
Damilola Reply
what is the change of matter from one state to another
Elijah Reply
what is isolation of organic compounds
IKyernum Reply
what is atomic radius
ThankGod Reply
Read Chapter 6, section 5
Dr
Read Chapter 6, section 5
Kareem
Atomic radius is the radius of the atom and is also called the orbital radius
Kareem
atomic radius is the distance between the nucleus of an atom and its valence shell
Amos
Read Chapter 6, section 5
paulino
Bohr's model of the theory atom
Ayom Reply
is there a question?
Dr
when a gas is compressed why it becomes hot?
ATOMIC
It has no oxygen then
Goldyei
read the chapter on thermochemistry...the sections on "PV" work and the First Law of Thermodynamics should help..
Dr
Which element react with water
Mukthar Reply
Mgo
Ibeh
an increase in the pressure of a gas results in the decrease of its
Valentina Reply
definition of the periodic table
Cosmos Reply
What is the lkenes
Da Reply
what were atoms composed of?
Moses Reply
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