Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is diff bet iterator and enumeration?

Answers were Sorted based on User's Feedback



what is diff bet iterator and enumeration?..

Answer / muralisankar

Both are to navigate collection objects. But Enumerator you
can not manipulate where as in Iterator you can add and
remove objects.

Is This Answer Correct ?    8 Yes 1 No

what is diff bet iterator and enumeration?..

Answer / siva thimmannagari

Iterator supports only hasNext(),
next() and remove() methods.
It is not synchronized.


Enumeration supports ONLY
hasMoreElements(), nextElement().
It is synchronized.

Is This Answer Correct ?    1 Yes 0 No

what is diff bet iterator and enumeration?..

Answer / aslam

Iterator has an additional method remove() and also
iterator checks for the concurrent modifications which will
be useful in multi threaded applications.

while Enumerator is much faster for sequential
access over collection elements, because it doesnot have
the additional overhead of checking concurrent modifications

Is This Answer Correct ?    0 Yes 0 No

what is diff bet iterator and enumeration?..

Answer / raju

From my experiance shows Enumeration is thread safe ..

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More Core Java Interview Questions

what do you mean by java annotations?

0 Answers  


what is the use of abstract class?

3 Answers   Amdocs, Atos Origin, Invictus,


How to calculate the length of a singly linked list in java?

0 Answers  


What is the final variable?

1 Answers  


What do you mean by constant time complexity?

0 Answers   Amazon,


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


What is the size of string?

0 Answers  


What is sortedset in java?

0 Answers  


What is the base class of all exception classes?

0 Answers  


How do singleton patterns work?

0 Answers  


Is map sorted in java?

0 Answers  


What is the default value of an object reference declared as an instance variable?

0 Answers  


Categories