练习六:多线程统计并求最大值
需求:
在上一题基础上继续完成如下需求:
每次抽的过程中,不打印,抽完时一次性打印(随机)
在此次抽奖过程中,抽奖箱1总共产生了6个奖项。
分别为:10,20,100,500,2,300最高奖项为300元,总计额为932元
在此次抽奖过程中,抽奖箱2总共产生了6个奖项。
分别为:5,50,200,800,80,700最高奖项为800元,总计额为1835元
解决方案一:
public class MyThread extends Thread { ArrayList<Integer> list; public MyThread(ArrayList<Integer> list) { this.list = list; } //线程一 static ArrayList<Integer> list1 = new ArrayList<>(); //线程二 static ArrayList<Integer> list2 = new ArrayList<>(); @Override public void run() { while (true) { synchronized (MyThread.class) { if (list.size() == 0) { if("抽奖箱1".equals(getName())){ System.out.println("抽奖箱1" + list1); }else { System.out.println("抽奖箱2" + list2); } break; } else { //继续抽奖 Collections.shuffle(list); int prize = list.remove(0); if("抽奖箱1".equals(getName())){ list1.add(prize); }else { list2.add(prize); } } } try { Thread.sleep(10); } catch (InterruptedException e) { e.printStackTrace(); } } } } public class Test { public static void main(String[] args) { /* 有一个抽奖池,该抽奖池中存放了奖励的金额,该抽奖池中的奖项为 {10,5,20,50,100,200,500,800,2,80,300,700}; 创建两个抽奖箱(线程)设置线程名称分别为“抽奖箱1”,“抽奖箱2” 随机从抽奖池中获取奖项元素并打印在控制台上,格式如下: 每次抽的过程中,不打印,抽完时一次性打印(随机) 在此次抽奖过程中,抽奖箱1总共产生了6个奖项。 分别为:10,20,100,500,2,300最高奖项为300元,总计额为932元 在此次抽奖过程中,抽奖箱2总共产生了6个奖项。 分别为:5,50,200,800,80,700最高奖项为800元,总计额为1835元 */ //创建奖池 ArrayList<Integer> list = new ArrayList<>(); Collections.addAll(list,10,5,20,50,100,200,500,800,2,80,300,700); //创建线程 MyThread t1 = new MyThread(list); MyThread t2 = new MyThread(list); //设置名字 t1.setName("抽奖箱1"); t2.setName("抽奖箱2"); //启动线程 t1.start(); t2.start(); } }
解决方案二:
public class MyThread extends Thread { ArrayList<Integer> list; public MyThread(ArrayList<Integer> list) { this.list = list; } @Override public void run() { ArrayList<Integer> boxList = new ArrayList<>();//1 //2 while (true) { synchronized (MyThread.class) { if (list.size() == 0) { System.out.println(getName() + boxList); break; } else { //继续抽奖 Collections.shuffle(list); int prize = list.remove(0); boxList.add(prize); } } try { Thread.sleep(10); } catch (InterruptedException e) { e.printStackTrace(); } } } } public class Test { public static void main(String[] args) { /* 有一个抽奖池,该抽奖池中存放了奖励的金额,该抽奖池中的奖项为 {10,5,20,50,100,200,500,800,2,80,300,700}; 创建两个抽奖箱(线程)设置线程名称分别为“抽奖箱1”,“抽奖箱2” 随机从抽奖池中获取奖项元素并打印在控制台上,格式如下: 每次抽的过程中,不打印,抽完时一次性打印(随机) 在此次抽奖过程中,抽奖箱1总共产生了6个奖项。 分别为:10,20,100,500,2,300最高奖项为300元,总计额为932元 在此次抽奖过程中,抽奖箱2总共产生了6个奖项。 分别为:5,50,200,800,80,700最高奖项为800元,总计额为1835元 */ //创建奖池 ArrayList<Integer> list = new ArrayList<>(); Collections.addAll(list,10,5,20,50,100,200,500,800,2,80,300,700); //创建线程 MyThread t1 = new MyThread(list); MyThread t2 = new MyThread(list); //设置名字 t1.setName("抽奖箱1"); t2.setName("抽奖箱2"); //启动线程 t1.start(); t2.start(); } }
练习七:多线程之间的比较
需求:
在上一题基础上继续完成如下需求:
在此次抽奖过程中,抽奖箱1总共产生了6个奖项,分别为:10,20,100,500,2,300
最高奖项为300元,总计额为932元
在此次抽奖过程中,抽奖箱2总共产生了6个奖项,分别为:5,50,200,800,80,700
最高奖项为800元,总计额为1835元
在此次抽奖过程中,抽奖箱2中产生了最大奖项,该奖项金额为800元
以上打印效果只是数据模拟,实际代码运行的效果会有差异
public class MyCallable implements Callable<Integer> { ArrayList<Integer> list; public MyCallable(ArrayList<Integer> list) { this.list = list; } @Override public Integer call() throws Exception { ArrayList<Integer> boxList = new ArrayList<>();//1 //2 while (true) { synchronized (MyCallable.class) { if (list.size() == 0) { System.out.println(Thread.currentThread().getName() + boxList); break; } else { //继续抽奖 Collections.shuffle(list); int prize = list.remove(0); boxList.add(prize); } } Thread.sleep(10); } //把集合中的最大值返回 if(boxList.size() == 0){ return null; }else{ return Collections.max(boxList); } } } package com.itheima.test7; import java.util.ArrayList; import java.util.Collections; import java.util.concurrent.ExecutionException; import java.util.concurrent.FutureTask; public class Test { public static void main(String[] args) throws ExecutionException, InterruptedException { /* 有一个抽奖池,该抽奖池中存放了奖励的金额,该抽奖池中的奖项为 {10,5,20,50,100,200,500,800,2,80,300,700}; 创建两个抽奖箱(线程)设置线程名称分别为 "抽奖箱1", "抽奖箱2" 随机从抽奖池中获取奖项元素并打印在控制台上,格式如下: 在此次抽奖过程中,抽奖箱1总共产生了6个奖项,分别为:10,20,100,500,2,300 最高奖项为300元,总计额为932元 在此次抽奖过程中,抽奖箱2总共产生了6个奖项,分别为:5,50,200,800,80,700 最高奖项为800元,总计额为1835元 在此次抽奖过程中,抽奖箱2中产生了最大奖项,该奖项金额为800元 核心逻辑:获取线程抽奖的最大值(看成是线程运行的结果) 以上打印效果只是数据模拟,实际代码运行的效果会有差异 */ //创建奖池 ArrayList<Integer> list = new ArrayList<>(); Collections.addAll(list,10,5,20,50,100,200,500,800,2,80,300,700); //创建多线程要运行的参数对象 MyCallable mc = new MyCallable(list); //创建多线程运行结果的管理者对象 //线程一 FutureTask<Integer> ft1 = new FutureTask<>(mc); //线程二 FutureTask<Integer> ft2 = new FutureTask<>(mc); //创建线程对象 Thread t1 = new Thread(ft1); Thread t2 = new Thread(ft2); //设置名字 t1.setName("抽奖箱1"); t2.setName("抽奖箱2"); //开启线程 t1.start(); t2.start(); Integer max1 = ft1.get(); Integer max2 = ft2.get(); System.out.println(max1); System.out.println(max2); //在此次抽奖过程中,抽奖箱2中产生了最大奖项,该奖项金额为800元 if(max1 == null){ System.out.println("在此次抽奖过程中,抽奖箱2中产生了最大奖项,该奖项金额为"+max2+"元"); }else if(max2 == null){ System.out.println("在此次抽奖过程中,抽奖箱1中产生了最大奖项,该奖项金额为"+max1+"元"); }else if(max1 > max2){ System.out.println("在此次抽奖过程中,抽奖箱1中产生了最大奖项,该奖项金额为"+max1+"元"); }else if(max1 < max2){ System.out.println("在此次抽奖过程中,抽奖箱2中产生了最大奖项,该奖项金额为"+max2+"元"); }else{ System.out.println("两者的最大奖项是一样的"); } } }