*
*/
public class Test {
public static void main(String[] args) {
//创建接收牌的集合
HashMap<Integer,Card> card = new HashMap<>();
add_card(card);
System.out.println(card);
//建立发牌索引角标
ArrayList<Integer> index = index();
System.out.println(index);
//洗牌
Collections.shuffle(index);
System.out.println(index);
//随机抽出来一个数作为明面上的牌
Random ra = new Random();
int ming_index = ra.nextInt(51)+1;
Card chou = card.get(ming_index);
System.out.println("抽出来的地主牌是"+chou);
//发牌的角标
ArrayList<Integer> 成龙 = send_card(index);