0

我正在做一个队列项目,该项目正在模拟杂货店。在我的程序中,我有一个方法调用,它设置一个随机变量,表示为排队的客户提供服务所需的时间。总迭代次数为 60,表示分钟。假设第一个客户有 4 分钟的等待时间,我需要能够在每分钟之后减少时间,直到它达到 0。我不知道如何减少存储在名为 的队列中的值myQueue。有什么建议可以减少每分钟后存储在队列中的值吗?

import java.util.*;
import java.util.Random;

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

int newCust=0;  //to hold random variable 1-4 for 25% chance of new customer
Queue<Integer> myQueue = new LinkedList<Integer>(); //instantiates new queue
int wait = 0;
int numCust = 0;                        //holds counter for number of  customer             

for (int i = 1; i <= 60; i++)  //iterator to cycle through 60 minutes
{

    Random randomNum = new Random();    
    newCust = randomNum.nextInt(4)+1;  //gives random #1-4, if 1, new cust added

    if(newCust == 1)                            //if statement to execute code if new cust added
    {
        Customer cust = new Customer();
        wait = cust.getServiceTime();                                           //stores wait time in variable
        myQueue.add(wait);                                                      //adds customer to the queue by wait time
        System.out.println("New customer added to queue, queue length is now " + myQueue.size());                       
    }

    if(myQueue.isEmpty())                                       //if to check if queue is empty and skip other conditionals
        System.out.println("-----------");
    else if(myQueue.peek()==0)                                  //if top of queue is at 0, remove from queue
    {
        myQueue.remove();
        System.out.println("Customer removed");
    }
    else    
          //THIS IS WHERE I AM TRYING TO DECREASE THE VALUE IN THE TOP QUEUE
}
4

2 回答 2

1

Integerint是不可变的,所以在你自己的类中包装一个:

class Customer {

    int time;

    public Customer(int time) {
        this.time = time;
    }

    // getter, setter
}

并定义一个相应的Queue

Queue<Customer> myQueue = new ...;

实例化一个java.util.Timer;在相应的 中,使用for-eachjava.util.TimerTask循环迭代,依次更改或删除每个循环:Queue

for (Customer c : myQueue) { ... }
于 2012-09-24T00:57:29.860 回答
0

您想要减少存储在位于队列顶部的 Customer 对象中的值。

最简单的方法是添加一个方法来减少 Customer 类中的 serviceTime。

public decServiceTime() {
  serviceTime--;
}

查看与队列中的 Customer 对象关联的值,您可以执行必要的操作。

此外,如果您有任何问题,您应该首先尝试给我,您的 TA 发送一封电子邮件。=)

于 2012-09-28T08:37:30.393 回答