Day02 泛型、跑得快案例

本文介绍了Java泛型的基本概念、泛型类、方法、接口以及通配符的使用,阐述了泛型在避免类型转换错误和提高代码安全性上的作用。同时,通过一个模拟斗地主游戏的案例,展示了如何利用HashMap和ArrayList进行牌组的创建、洗牌、发牌及排序,帮助读者更好地理解泛型的实际应用。
摘要由CSDN通过智能技术生成

一、泛型

概念

泛型:可以在类或方法中预支地使用未知的类型

好处

  • 将运行时期的ClassCastException,转移到了编译时期变成了编译失败。
  • 避免了类型强转的麻烦。

泛型类和泛型方法

修饰符 class 类名<代表泛型的变量> {}

方法

修饰符 <代表泛型的变量> 返回值类型 方法名(参数){}

泛型接口和泛型方法

接口

修饰符 interface 接口名<代表泛型的变量> { }

泛型通配符

使用<?>来表示位置通配符

受限泛型

泛型的上限

  • 格式: 类型名称 <? extends 类> 对象名称
  • 意义: 只能接受该类型及其子类

泛型的下限:

  • 格式: 类型名称<? super 类> 对象名称
  • 意义: 只能接受该类型及其父类

二、跑得快有序案例(模仿斗地主案例)

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;

public class PaodkPro {
    public static void main(String[] args) {

        //制作跑得快的牌库
        String[] colors = {"♦", "♣", "♥", "♠"};
        String[] numbers = {"3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"};
        HashMap<Integer, String> poker = new HashMap<>();
        ArrayList<Integer> pokerIndex = new ArrayList<>();
        int index = 0;
        for (String number : numbers) {
            for (String color : colors) {
                if (index < 43) {
                    poker.put(index, color + number);
                    pokerIndex.add(index);
                    index++;
                }
            }
        }
        poker.put(index, "♠A");
        pokerIndex.add(index);
        index++;
        poker.put(index, "♠2");
        pokerIndex.add(index);
        index++;


        //洗牌
        Collections.shuffle(pokerIndex);

        //发牌
        //建立三个玩家的牌集
        ArrayList<Integer> player1 = new ArrayList<>();
        ArrayList<Integer> player2 = new ArrayList<>();
        ArrayList<Integer> player3 = new ArrayList<>();

        for (int i = 0; i < pokerIndex.size(); i++) {
            Integer in = pokerIndex.get(i);
            if (i % 3 == 0) {
                player1.add(in);
            } else if (i % 3 == 1) {
                player2.add(in);
            } else {
                player3.add(in);
            }
        }

        //排序
        Collections.sort(player1);
        Collections.sort(player2);
        Collections.sort(player3);

        //看牌
        lookPoker("周润发", poker, player1);
        lookPoker("刘德华", poker, player2);
        lookPoker("周星驰", poker, player3);
    }

    public static void lookPoker(String name, HashMap<Integer, String> poker, ArrayList<Integer> list) {
        System.out.print(name + ": ");
        for (Integer key : list) {
            String value = poker.get(key);
            System.out.print(value + " ");
        }
        System.out.println();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值