What is collection framework?what interfaces and classes support collection framework?

One can use different groups of objects in program using collection frame work.for more detail read
collection frame work from java.util pack.

Showing Answers 1 - 7 of 7 Answers

ranjit

  • Oct 25th, 2005
 

how to upload my web application on net trough code.

  Was this answer useful?  Yes

Mamatha

  • Oct 27th, 2005
 

A Collection Framework is a generic types which you use to create collection classes that support various ways to store an dmange objects of any kind in memory.The Collection Framwork supports the folowing Interfaces:1) Collection2) Set3) List4) Sorted setThe Collection Framwork supports the following Classes:1) HashSet2) TreeSet3) LinkedList4) ArrayList5) HashMap6) Vector7) LinkedHashSet8) HashTable

  Was this answer useful?  Yes

shriti sinha

  • Mar 23rd, 2006
 

I would like to make a correction here

HashMap and HashTable is not a part of collection framework.

What do you think mamatha?

  Was this answer useful?  Yes

soorma

  • Apr 25th, 2006
 

 A collection is a group of object. its provide ways (using classes n interface)for fundamental alteration in the structure and architecture of many element in java.util pakage

classes>>>

Collections,AbstractCollection,AbstractList,AbstractMap,AbstractSet,

Arraylist,Arrays,Date,Calendar,TimeZone,Stack,StringTokenizer,

HashMap,HashSet,HashTable,TreeMap,LinkedList,Vector

INterface>>>

Collection, Comparator,Enumrator,Iterator,ListIterator,

Map,Set,SortedMap,SortedSet

  Was this answer useful?  Yes

sampra

  • Mar 7th, 2012
 

collection framwork is the concept to store the data. there are mainly two part in collection framework1. collection interface 2.Map interface
1.Collection-List/Set--AL/LL/Vector(C) Set (Ash set/linked hashset/Tree set)
2.Map- hash map/hashtable/tree map/linked hashmap(C)

  Was this answer useful?  Yes

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