我正在尝试编译我的项目,但出现以下错误:
“错误:类型参数进程不在类型变量 T 的范围内”
public class Heap<T extends Comparable<T>> {
// ...
}
public class Process {
// ...
}
public class HeapDemo{
public static void main(final String[] args) {
Heap<Process> heap = new Heap<Process>(); //error here
}
}
该程序是一个使用堆的 CPU 调度模拟,如果有帮助的话。