当前位置: 首页 > article >正文

Java多线程--实现跑马小游戏

线程的实现方式

  1. 继承Thread类:void run()方法没有返回值,无法抛异常
  2. 实现Runnable接口:void run()方法没有返回值,无法抛异常
  3. 实现Callable接口:V call() throws Exception 返回结果,能够抛异常

实现Callable接口

(1)创建Callable接口的实现类,并实现call()方法,该call()方法将作为线程执行体,并且有返回值。

(2)创建Callable实现类的实例,使用FutureTask类来包装Callable对象,该FutureTask对象封装了该Callable对象的call()方法的返回值。

(3)使用FutureTask对象作为Thread对象的target创建并启动新线程。

(4)调用FutureTask对象的get()方法来获得子线程执行结束后的返回值

任务

四匹马,跑一千米比赛,每匹马的速度通过1~10的随机数来产生,输出哪匹马是冠军

RunTask1.java代码:

import java.util.Random;
import java.util.concurrent.Callable;

/**
 * 跑步任务
 */

public class RunTask1 implements Callable<Long> {
    // step/100ms 是否睡着 睡觉时间
    // 通过方法形参接收参数
    // 定义属性
    private int step;
    private boolean isSleep;
    private int sleepTime;
    public RunTask1(int step,boolean isSleep,int sleepTime){
        this.step=step;
        this.isSleep=isSleep;
        this.sleepTime=sleepTime;
    }
    @Override
    public Long call() throws Exception {
        int distance=0;
        long start = System.currentTimeMillis();
            while(true){
                distance+=step;
                if (isSleep) {
                    if (distance == 800) { //跑到800米
                        try {
                        System.out.println(Thread.currentThread().getName() + "睡" + sleepTime + "ms");
                        Thread.sleep(sleepTime);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
            if(distance>=1000){
                break;
            }
            System.out.println(Thread.currentThread().getName() + "跑完" + distance + "米");
        }
        try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return System.currentTimeMillis()-start;
    }
}

 Test.java代码

import java.util.Random;
import java.util.concurrent.FutureTask;


public class Test {
    public static void main(String[] args) throws Exception {
        //第一匹马的跑步任务
        RunTask1 horse1=new RunTask1(new Random().nextInt(10)+1,true,200);
        FutureTask<Long> horseResult = new FutureTask<>(horse1);
        Thread t1=new Thread(horseResult,"马1");

        //第二匹马的跑步任务
        RunTask1 horse2=new RunTask1(new Random().nextInt(10)+1,true,400);
        FutureTask<Long> horseResult1 = new FutureTask<>(horse2);
        Thread t2=new Thread(horseResult1,"马2");

        //第三匹马的跑步任务
        RunTask1 horse3=new RunTask1(new Random().nextInt(10)+1,true,5500);
        FutureTask<Long> horseResult2 = new FutureTask<>(horse3);
        Thread t3=new Thread(horseResult2,"马3");

        //第四匹马的跑步任务
        RunTask1 horse4=new RunTask1(new Random().nextInt(10)+1,false,0);
        FutureTask<Long> horseResult3 = new FutureTask<>(horse4);
        Thread t4=new Thread(horseResult3,"马4");
        t1.start();
        t2.start();
        t3.start();
        t4.start();

        //统计比赛结果,一定要等main线程执行,否则, Horse1的线程还没跑完,就输出了winner is Horse2
        if((horseResult.get().longValue() < horseResult1.get().longValue()) && (horseResult.get().longValue() < horseResult2.get().longValue()) && (horseResult.get().longValue() < horseResult3.get().longValue())){
            System.out.println("winner is "+t1.getName());
        }
        else if((horseResult1.get().longValue() < horseResult.get().longValue()) && (horseResult1.get().longValue() < horseResult2.get().longValue()) && (horseResult1.get().longValue() < horseResult3.get().longValue())){
            System.out.println("winner is "+t2.getName());
        }
        else if((horseResult2.get().longValue() < horseResult.get().longValue()) && (horseResult2.get().longValue() < horseResult1.get().longValue()) && (horseResult2.get().longValue() < horseResult3.get().longValue())){
            System.out.println("winner is "+t3.getName());
        }
        else if(horseResult3.get().longValue() < horseResult.get().longValue() && (horseResult3.get().longValue() < horseResult1.get().longValue()) && (horseResult3.get().longValue() < horseResult2.get().longValue())){
            System.out.println("winner is "+t4.getName());
        }
        else System.out.println("平局");
    }
}

控制台输出,想要结果不一样,可以通过设置哪一匹马会睡眠,从而改变结果,代码还是有不足:


http://www.kler.cn/a/353341.html

相关文章:

  • java项目之在线文档管理系统源码(springboot+mysql+vue+文档)
  • “深入浅出”系列之C++:(5)STL标准模板库详解
  • spring cloud注册nacos并从nacos上拉取配置文件,spring cloud不会自动读取bootstrap.yml文件
  • 计算机网络之---网络层的基本功能
  • Jina AI/Reader:将 URL 和 PDF 内容自动化提取并转换为 LLM 可处理文本
  • 《学习方法报》是什么级别的报纸?
  • 鸿蒙网络编程系列4-实现Smtp邮件发送客户端
  • 海康NVR管理平台EasyNVR多品牌NVR管理工具实现智能化视频管理介入现代化工厂
  • vue 音频播放控件封装
  • [已解决]DockerTarBuilder永久解决镜像docker拉取异常问题
  • Redis --- 第四讲 --- 常用数据结构 --- string类型
  • IntelliJ IDEA插件开发-开发环境搭建
  • 关于C语言中局部变量与全局变量——超详细解释篇
  • 元数据 -BWF 广播音频扩展 (bext)
  • redis--过期策略和内存淘汰策略
  • 灵当CRM index.php 任意文件上传漏洞复现
  • 我也要!赚钱是分层的:这就是你又累又穷的原因——早读(逆天打工人爬取热门微信文章解读)
  • 小猿口算炸鱼脚本
  • Python爬虫中的多线程技术:提升数据采集效率
  • 利用FnOS搭建虚拟云桌面,并搭建前端开发环境(一)
  • Free RTOS实时操作系统
  • 随机掉落的项目足迹:修改组件库默认样式
  • 视频网站开发:Spring Boot框架的高效实现
  • VRRP
  • 【C语言】结构体应用:学生成绩排名