POOPE 发表于 2021-8-31 22:51:42

JAVA多线程抢红包的实现示例

这篇文章主要介绍了JAVA多线程抢红包的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
大体思路
红包的分发见JAVA作业——红包分发。
而抢红包要解决的是线程问题。
其实比较简单,设定好人数,每个人一个线程,每个线程执行一遍,有红包就抢,没有红包就抢不到,所以run函数中只要判断现在还有没有红包就可以了。
代码实现


import java.util.Random;
import java.util.Scanner;

public class Main {
public static void main(String[] args) {
    int person_num, red_pocket_num, sum_money;
    Scanner scanner = new Scanner(System.in);
    System.out.println("请设置红包个数:");
    red_pocket_num = scanner.nextInt();
    System.out.println("请设置总金额数量(分):");
    sum_money = scanner.nextInt();
    if(sum_money < red_pocket_num) {
      System.out.println("钱不够,退出程序。");
      return;
    }
    System.out.println("请设置抢红包成员个数:");
    person_num = scanner.nextInt();
    myRunnable myrunnable = new myRunnable(sum_money,red_pocket_num);
    Thread []person = new Thread;
    for (int i = 0; i < person_num; i++) {
      person = new Thread(myrunnable);
      person.setName("用户"+(i+1));
      person.start();
    }
}
}
class myRunnable implements Runnable{
private int []red_pocket;
private int num;
private int now_num;
public myRunnable(int money, int num) {
    this.red_pocket = new Red_Pocket(money, num).get_red_packets();
    this.num = num;
    this.now_num = num;
}
@Override
public void run() {
    if(this.num>0){
      System.out.println(Thread.currentThread().getName()+"抢到了红包 "+(this.num-this.now_num+1)+" : "+red_pocket[--this.now_num]+"分");
    }
    else{
      System.out.println(Thread.currentThread().getName()+"未抢到红包。");
    }
}
}
class Red_Pocket{
private long seed;
private int money;
private int num;
public int[] get_red_packets() {
    if(this.money < this.num) return new int;
    Random random = new Random(this.seed);
    this.seed = random.nextLong();
    int[] res = new int;
    double[] temp = new double;
    double sum = 0;
    int sum2 = 0;
    for (int i = 0; i < this.num; i++) {
      temp = random.nextDouble();
      sum += temp;
    }
    for (int i = 0; i < this.num; i++) {
      res = 1 + (int)(temp / sum * (this.money - this.num));
      sum2 += res;
    }
    res += this.money - sum2;
    return res;
}
private void init() {
    this.seed = new Random(System.currentTimeMillis()).nextLong();
}
public Red_Pocket(int money,int num) {
    init();
    this.money = money;
    this.num = num;
}
}
到此这篇关于JAVA多线程抢红包的实现示例的文章就介绍到这了,更多相关JAVA多线程抢红包内容请搜索CodeAE代码之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持CodeAE代码之家!
原文链接:https://blog.csdn.net/Evrse/article/details/112105591

文档来源:网络转载 http://www.zzvips.com/article/187743.html
页: [1]
查看完整版本: JAVA多线程抢红包的实现示例