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/コレクション API に大量のデータを保存する必要があります。その配列または配列リストに適しているのはどれですか。なぜ
Arraysタイプセーフコレクションであり、一度作成すると拡大または縮小できないため、使いやすくなりますArrayListが、コレクションが固定長であり、オブジェクトのタイプが同じであることがわかっている場合は、優先することができますArray。
Arrays
ArrayList
Array
LinkedListコレクションを頻繁に変更する場合にも使用できます。
LinkedList
それは、要件と保存するデータのタイプに完全に依存します。