将数组转换为数组列表
我在Java中将数组转换为数组时遇到了很多麻烦。这是我现在的数组:ArrayList
Card[] hand = new Card[2];
“手”拿着一系列“牌”。这看起来像一个?ArrayList
我在Java中将数组转换为数组时遇到了很多麻烦。这是我现在的数组:ArrayList
Card[] hand = new Card[2];
“手”拿着一系列“牌”。这看起来像一个?ArrayList
这将为您提供一个列表。
List<Card> cardsList = Arrays.asList(hand);
如果你想要一个数组列表,你可以做
ArrayList<Card> cardsList = new ArrayList<Card>(Arrays.asList(hand));
作为那条线将是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