web-dev-qa-db-ja.com

配列をArrayListに変換します

Javaで配列をArrayListに変換するのに苦労しています。これは今の私の配列です:

Card[] hand = new Card[2];

「手」は「カード」の配列を保持します。これはArrayListとしてどのように見えますか?

76
Saatana

ArrayListとして、その行は

import Java.util.ArrayList;
...
ArrayList<Card> hand = new ArrayList<Card>();

ArrayListを使用するには、

hand.get(i); //gets the element at position i 
hand.add(obj); //adds the obj to the end of the list
hand.remove(i); //removes the element at position i
hand.add(i, obj); //adds the obj at the specified index
hand.set(i, obj); //overwrites the object at i with the new obj

こちらもお読みください http://docs.Oracle.com/javase/6/docs/api/Java/util/ArrayList.html

32
twain249

これによりリストが表示されます。

List<Card> cardsList = Arrays.asList(hand);

配列リストが必要な場合は、次のことができます

ArrayList<Card> cardsList = new ArrayList<Card>(Arrays.asList(hand));
86
Kal
List<Card> list = new ArrayList<Card>(Arrays.asList(hand));
13
Eng.Fouad

リストの宣言(および空の配列リストでの初期化)

List<Card> cardList = new ArrayList<Card>();

要素を追加する:

Card card;
cardList.add(card);

要素の繰り返し:

for(Card card : cardList){
    System.out.println(card);
}
1
bpgergo