Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经多次阅读 HashMap 和 ArrayList 是什么,但我仍然无法理解它们的用途以及它们与 Vector 有何不同。
并且ArrayList是Lists 族的一个容器,它存储一系列对象,例如“car1”、“car2”等...
ArrayList
List
AHashMap是将键映射到值的类型的容器Map,例如“car1 => red”、“car2=>blue”等...
HashMap
Map