| Author |
Question on Enumeration Interface
|
sano vasu
Greenhorn
Joined: Mar 26, 2005
Posts: 8
|
|
suppose v is vector object with elements, v.elements() returns the collection object of type Enumeration Enumeration e = v.elements(); how can we request hasMoreElemets()and next() on e to retrieve the elements as Enumeration is an interface without implementation.
|
 |
Timmy Marks
Ranch Hand
Joined: Dec 01, 2003
Posts: 226
|
|
Actually, it will return to you a reference of some class that implements the Enumeration interface. This interface guarantees that whatever class it is, it implements the methods hasMoreElements() and next(). This is the power of programming to an interface. If someone comes up with the super data structure where everything is implemented in the best way possible, the designers of the Vector class can replace what they are using now and return the super data structure, and as long as it also implements Enumeration, it won't break your code.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24061
|
|
Hi, Welcome to JavaRanch! A bit of business: you may not have read our naming policy on the way in. It requires that you use a full, real (sounding) first and last name for your display name. Initials aren't enough. You can change your display name here. Thanks!
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Question on Enumeration Interface
|
|
|