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.
我需要在 Java/collection API 中存储大量数据。哪个适合该 Array 或 Arraylist。以及为什么
Arrays是类型化的安全集合,一旦你创建它就不能增长或缩小,所以更好地使用ArrayList,但如果你知道集合是固定长度并且对象类型相同,那么你可以更喜欢Array。
Arrays
ArrayList
Array
LinkedList如果您经常修改您的收藏,您也可以使用。
LinkedList
这完全取决于您的要求和要存储的数据类型。