1
所需的返回類型我有下面的類被替代的方法
class Stack {
Node top = null;
...
public Node pop(){
return this.top;
}
}
class MinStack extends Stack {
...
public Node pop() {
super.pop();
}
}
編譯器說,pop()
在MinStack
需要返回Node
類型。是不是執行super.pop()
?
非常感謝!很有幫助! – Zoe