这是一段 Java 代码:
interface Rideable {
String getGait();
}
public class Camel implements Rideable {
int x = 2;
public static void main(String[] args) {
new Camel().go(8);
}
void go(int speed) {
System.out.println((++speed * x++) + this.getGait());
}
String getGait() {
return " mph, lope";
}
}
事实证明,编译失败(根据 Oracle),但在我看来,它应该可以正常运行并产生输出。那么,编译失败的罪魁祸首在哪里呢?干杯