we know:
ArrayList;
LinkedList;
TreeMap
and other... and all names in CamelCase format, but why Hashtable
, not HashTable
?
it is unprincipled question, just wondering :)
we know:
ArrayList;
LinkedList;
TreeMap
and other... and all names in CamelCase format, but why Hashtable
, not HashTable
?
it is unprincipled question, just wondering :)
Hashtable
was created in Java v1. The consistent naming conventions for collections were established later, in Java2, when the other classes were published as part of the brand new Java Collection Framework.
Which btw made Hashtable
obsolete, so it should not be used in new code.
It's a typo. Same as Cloneable
(should be Clonable). Or Referer
(should be Referrer)