我需要创建Event
类和Venue
类。
在Venue
类中,我需要放置优先级队列。我需要编写一个方法来删除并显示队列中的事件,并显示一些简单的统计信息:每个事件的平均人数等。
我被困在第一点 - 一个将删除并显示此事件的方法。是否可以将整个队列作为参数传递给方法? - 我试图这样做,但它似乎没有用。 - (Event
类中的显示方法)。
public class Event {
private String name;
private int time;
private int numberOfParticipants;
public Event(String name, int time, int numberOfParticipants) {
this.name = name;
this.time = time;
this.numberOfParticipants = numberOfParticipants;
}
/**Getters and setters omitted**/
@Override
public String toString() {
return "Wydarzenie{" +
"name='" + name + '\'' +
", time=" + time +
", numberOfParticipants=" + numberOfParticipants +
'}';
}
public void display(PriorityQueue<Event> e){
while (!e.isEmpty()){
System.out.println(e.remove());
}
}
}
地点类:
public class Venue {
public static void main(String[] args) {
PriorityQueue<Event> pq = new PriorityQueue<>(Comparator.comparing(Event::getTime));
pq.add(new Event("stand up", 90, 200));
pq.add(new Event("rock concert", 120, 150));
pq.add(new Event("theatre play", 60, 120));
pq.add(new Event("street performance", 70, 80));
pq.add(new Event("movie", 100, 55));
}
}
答案 0 :(得分:0)
以下是场地类的一些变化。
class Venue {
PriorityQueue<Event> pq = new PriorityQueue<Event>(Comparator.comparing(Event::getTime));
public static void main(String[] args) {
Venue v = new Venue();
v.addEvents();
v.display(v.pq);
}
private void addEvents() {
pq.add(new Event("stand up", 90, 200));
pq.add(new Event("rock concert", 120, 150));
pq.add(new Event("theatre play", 60, 120));
pq.add(new Event("street performance", 70, 80));
pq.add(new Event("movie", 100, 55));
}
private void display(PriorityQueue<Event> e) {
while (!e.isEmpty()) {
System.out.println(e.remove());
}
}
}
队列处于类级别,因此每个Venue都可以拥有自己的队列。 main方法只调用其他方法,但理想情况下应放在不同的类中。将在Venue实例上调用显示,您可以在从队列中删除每个项目时使用该方法进行统计。