将数组转换为ArrayList

时间:2012-03-21 19:09:53

标签: java arrays list arraylist blackjack

我在将数组转换为Java中的ArrayList时遇到了很多麻烦。这是我现在的阵列:

Card[] hand = new Card[2];

“手”持有一系列“卡片”。这看起来像ArrayList

4 个答案:

答案 0 :(得分:86)

这会给你一个清单。

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

如果你想要一个arraylist,你可以做

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

答案 1 :(得分:32)

作为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

答案 2 :(得分:13)

List<Card> list = new ArrayList<Card>(Arrays.asList(hand));

答案 3 :(得分:1)

声明列表(并用空的arraylist初始化它)

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

添加元素:

Card card;
cardList.add(card);

迭代元素:

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