What are differences between Enumeration, ArrayList, Hashtable and Collections and Collection?

Pl. escalate ur ans.

Showing Answers 1 - 6 of 6 Answers

karthik

  • Nov 8th, 2005
 

This site is very useful for freshers yor are applying for the jobs in software side and also useful to gain knowledge in programming side and we know about the all programming language and gaining with important hints and important question its very useful to all of us one

  Was this answer useful?  Yes

sumanth

  • Nov 8th, 2005
 

they all belong to the collections classes

  Was this answer useful?  Yes

ss

  • Nov 9th, 2005
 

enmuration is a copy of any colletion.

Arraylist is a Dynamic array. it stores elements in array format. It is a dynamic array.

Hashtable is Key value pair.

Collection is a class which stores the data temprarley.

All the above Collection are used to strore the data temprarly.

asif

  • Nov 10th, 2005
 

karthik Wrote: This site is very useful for freshers yor are applying for the jobs in software side and also useful to gain knowledge in programming side and we know about the all programming language and gaining with important hints and important question its very useful to all of us one

  Was this answer useful?  Yes

Guest

  • Nov 11th, 2005
 

Enumeration: It is series of elements. It can be use to enumerate through the elements of a vector, keys or values of a hashtable. You can not remove elements from Enumeration.

ArrayList: It is re-sizable array implementation. Belongs to 'List' group in collection. It permits all elements, including null. It is not thread -safe.

Hashtable: It maps key to value. You can use non-null value for key or value. It is part of group Map in collection.

Collections: It implements Polymorphic algorithms which operate on collections.

Collection: It is the root interface in the collection hierarchy.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions