我正在开发一个程序模拟杂货店的队列项目。在我的程序中,我有一个方法调用,它设置一个随机变量,表示在队列中为客户提供服务所花费的时间。总迭代次数为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
}
答案 0 :(得分:1)
Integer
是不可变的,因此请在您自己的类中包含int
:
class Customer {
int time;
public Customer(int time) {
this.time = time;
}
// getter, setter
}
并定义相应的Queue
:
Queue<Customer> myQueue = new ...;
实例化java.util.Timer
;在相应的java.util.TimerTask
中,使用 for-each 循环遍历Queue
,依次更改或删除每个
for (Customer c : myQueue) { ... }
答案 1 :(得分:0)
您希望减少存储在位于队列顶部的Customer对象中的值。
最简单的方法是添加一个方法来减少Customer类中的serviceTime。
public decServiceTime() {
serviceTime--;
}
查看与队列中的Customer对象关联的值,您可以执行必要的操作。
此外,如果您有任何疑问,请先尝试发送给我,您的TA会发送电子邮件。 =)