• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Q about Vector and Hashtable in SCJP 1.4

 
Ranch Hand
Posts: 443
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Will there be questions about these 2 ? I believe these 2 are now deprecated in 1.4.
[ June 22, 2003: Message edited by: Alton Hernandez ]
 
Ranch Hand
Posts: 1561
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No!, they're not deprecated !
Classes under the List interface:
ArrayList
Vector (synchronized, therefore slower than ArrayList)
LinkedList
Classes under the Map interface
HashMap (allows null)
Hashtable (synchronized, doesn't allow null)
TreeMap
LinkedHashMap
there will be questions on this...
HTH

[ June 22, 2003: Message edited by: Andres Gonzalez ]
[ June 22, 2003: Message edited by: Andres Gonzalez ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic