Programming Tutorials

Comment on Tutorial - Hashtable example in Java By Ivan Lim



Comment Added by : Stephen

Comment Added at : 2012-06-09 06:36:23

Comment on Tutorial : Hashtable example in Java By Ivan Lim
Thanks for the tutorial.

One question: Since Hashtable is a generic requiring two types, shouldn't you specify the types, i.e.
Hashtable <String,Double> balance = new Hashtable<String,Double>();


View Tutorial