次のコードの場合:
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
原因は何ですか?これを引き起こす可能性のあるタイプミスや空の割り当ては見当たりません。