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.
整数配列の組み合わせを作成し、後で使用するためにそれらを格納するためにベクトルに追加しています。int []をループして組み合わせを行い、要素をベクトルに追加します。
ベクターはint[]への参照のみを追加するので、最後に同じint []への参照を多数保持しますか、それともベクターにコピーを追加しますか?
を含む配列int[]はObjectJavaのsです。これは、あなたがあなたの要素Vectorへの参照を保持していることを意味します。int[]
int[]
Object
Vector
ただし、ArrayListの代わりに、VectorまたはCollections.synchronizedList同期バージョンのが本当に必要な場合は、を使用することをお勧めしますList。
ArrayList
Collections.synchronizedList
List