• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Does Java Programming Book by Poornachandra Sarang covers Collection framework in easier format

 
Ranch Hand
Posts: 1087
Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have been reading collections and still I feel that i dont know much about collections.I still have confusion on Ordering and Sorting.I know List allows duplicate elements, Set doesnot allow duplicate elements, Map uses key/value pair

Also classes like ArrayList,Vector,LinkedList are all ordered classes implementing List interface

HashSet is unsorted,unordered,
LinkedHashSet is ordered version of HashSet,
TreeSet is Sorted

and all the above three classes implement the Set interface


HashMap is an unordered,unsorted Map
Hashtable is same as HashMap except that it is synchronized
LinkedHashMap is ordered
TreeMap is sorted

and the above three classes implement the Map interface

But still i havent come across any satisfactory programming code that makes me feel good that i understood about Collection framework..I mean also Comparable and Comparator interface is confusing me.


Will this book help me understand Collection Framework in a much more simpler format??? help me gain confidence that I am good in Collections???
 
The glass is neither half full or half empty. It is too big. But this tiny ad is just right:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic