0

对于以下代码:

private double currentTime;
private Queue<ScheduledEvent<S>> diary;

public Simulation() {
    diary = new PriorityQueue<ScheduledEvent<S>>;
}

在一个名为的抽象类Simulation<S>中,我得到了以下所有 Eclipse 错误。

  • Syntax error on tokens, delete these tokens
  • Syntax error, insert ">>" to complete ReferenceType2
  • Syntax error, insert "AssignmentOperator Expression" to complete Assignment
  • Syntax error, insert ";" to complete BlockStatements

原因是什么?我没有看到任何可能导致这种情况的拼写错误或空作业。

4

1 回答 1

4

因为你不见了()

diary = new PriorityQueue<ScheduledEvent<S>>();

您正在调用构造函数,即使没有传递仍然需要的任何参数()

于 2013-02-18T03:07:46.420 回答