⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deck.java

📁 it contains the practical programs in our college
💻 JAVA
字号:
import java.util.*;public class Deck {    private static final List<Card> protoDeck = new ArrayList<Card>();    // Initialize prototype deck    static {	for (Suit suit : Suit.values())	    for (Rank rank : Rank.values())		protoDeck.add(new Card(rank, suit));    }    public static ArrayList<Card> newDeck() {	// Return copy of prototype deck	return new ArrayList<Card>(protoDeck);    }    public static void main(String[] args) {	System.out.println(newDeck());    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -