Re: Querry on Hashtable in Collection Frameworks
Posted By:
Aditya_Athalye
Posted On:
Wednesday, July 21, 2004 03:51 AM
Use values() method of HashMap which returns a collection of all value objects in the HashMap and then iterate on this collection
Re: Querry on Hashtable in Collection Frameworks
Posted By:
vijay_raghavan
Posted On:
Friday, June 25, 2004 04:02 AM
As explained above. Better master the usage of inbuilt Classes in JDK to avoid elementary doubts
Re: Querry on Hashtable in Collection Frameworks
Posted By:
vijay_raghavan
Posted On:
Friday, June 25, 2004 04:02 AM
As explained above. Better master the usage of inbuilt Classes in JDK to avoid elementary doubts
Re: Querry on Hashtable in Collection Frameworks
Posted By:
Sean_Owen
Posted On:
Tuesday, June 22, 2004 07:04 AM
"keySet()" is the equivalent method from the Collections framework. So you should use "Iterator i = hashtable.keySet().iterator();".