public static getDeck(ArrayList<Integer> cards) {
for (int total = 1; total !=5; total++) {
for (int suit = 1; suit != 14; suit++) {
cards.add(suit);
}
}
Collections.shuffle(cards); // Randomize the list
return cards;
}
public static void main(String[] args) {
// Create the cards here.
ArrayList<Integer> cards = new ArrayList<>();
cards = getDeck(cards);
}
我想能夠調用getDeck函數,它將向我傳遞的Arraylist添加52個數字。在這種情況下卡。然後返回這個對象並將其設置爲卡片。如何從公共方法/函數返回ArrayList
我得到的錯誤是如此。
你忘了指定的方法聲明的返回類型。 –
噢,對不起,請問我需要哪種退貨類型?對不起,我很新。 – jackdh
您是否真的閱讀過編譯器錯誤信息? –