关于java:将数组转换为ArrayList

Convert an array into an ArrayList

本问题已经有最佳答案,请猛点这里访问。

在Java中,将数组转换成EDCOX1 0Ω是非常麻烦的。这是我的阵列:

1
Card[] hand = new Card[2];

"hand"持有一系列"卡片"。这看起来像一个ArrayList


这会给你一个清单。

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

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

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


作为一个ArrayList那条线

1
2
3
import java.util.ArrayList;
...
ArrayList<Card> hand = new ArrayList<Card>();

要使用ArrayList,你必须这样做。

1
2
3
4
5
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。


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

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

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

添加元素:

1
2
Card card;
cardList.add(card);

迭代元素:

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