Javaで配列をArrayList
に変換するのに苦労しています。これは今の私の配列です:
Card[] hand = new Card[2];
「手」は「カード」の配列を保持します。これはArrayList
としてどのように見えますか?
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
これによりリストが表示されます。
List<Card> cardsList = Arrays.asList(hand);
配列リストが必要な場合は、次のことができます
ArrayList<Card> cardsList = new ArrayList<Card>(Arrays.asList(hand));
List<Card> list = new ArrayList<Card>(Arrays.asList(hand));
リストの宣言(および空の配列リストでの初期化)
List<Card> cardList = new ArrayList<Card>();
要素を追加する:
Card card;
cardList.add(card);
要素の繰り返し:
for(Card card : cardList){
System.out.println(card);
}