1. Vector = 10 2. ArrayList = 10 3. LinkedList - does not have a capacity 4. HashMap = 16 (but with the default load factor of 0.75, only 12 can be populated before a resize will happen) 5. LinkedHashMap = 16 (read above) 6. ConcurrentHashMap = 16 7. HashSet = 16 (it's based on a HashMap) 8. LinkedHashSet = 16 9. TreeSet = does not have one请注意,其中一些是懒惰的,并且所有这些都可能会因发行版的不同而有所变化。