98

我在将数组转换为ArrayListJava 时遇到了很多麻烦。这是我现在的数组:

Card[] hand = new Card[2];

"hand" 包含一系列 "Cards"。这看起来如何ArrayList

4

4 回答 4

87

这会给你一个清单。

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

如果你想要一个数组列表,你可以做

ArrayList<Card> cardsList = new ArrayList<Card>(Arrays.asList(hand));
于 2012-03-21T19:13:09.800 回答
38

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

于 2012-03-21T19:14:03.223 回答
14
List<Card> list = new ArrayList<Card>(Arrays.asList(hand));
于 2012-03-21T19:12:18.123 回答
1

声明列表(并使用空数组列表对其进行初始化)

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

添加元素:

Card card;
cardList.add(card);

迭代元素:

for(Card card : cardList){
    System.out.println(card);
}
于 2012-03-21T19:13:42.133 回答