Tagged Questions

3
votes
3answers
3k views

Java Collections Implimentations (e.g. HashMaps vs HashSet vs HashTable …), what is the cost of choosing the wrong one?

In my code I default to using ArrayList for all Lists, HashMap for all maps, HashSet for all sets. From a practical standpoint how much am I losing in flexibility, scalability, readability and ...