As we know the purpose of "final" keyword in java. While declaring a variable as final, we have to initialize the variable. like "final int a=10;" We can not change the value of "a". But if we go for HashTable its possible to add some value even declaring the HashTable as final.
Example::
private static final Hashtable<String,Integer> MYHASH = new Hashtable<String,Integer>()
{{ put("foo", 1);
put("bar", 256);
put("data", 3);
put("moredata", 27);
put("hello", 32);
put("world", 65536); }};
Now I am declaring the MYHASH HashTable as final. If I try to add some more elements to this, its accepting.
MYHASH.put("NEW DATA", 256);
Now the "NEW DATA" is added to the HashTable. My questions is Why its allowing to add even its declaring as final????
java.util.Dateorjava.awt.Point, say) then it's still mutable. – Tom Hawtin - tackline Nov 3 '11 at 15:27