GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  J2EE  >  Core Java

 Print  |  
Question:  What is collection framework?what interfaces and
classes support collection framework?


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


October 10, 2005 06:19:00 #2
 Mamatha   Member Since: Visitor    Total Comments: N/A 

RE: What is collection framework?what interfaces and
 
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
     

 

Back To Question