我們今天早上在java中討論了繼承問題,但是好像我的代碼有錯誤,我的教授無法幫助我,因爲他很忙,你能幫我指點我的錯誤嗎?繼承java「找不到符號」
package inheritance;
class Inheritance {
void accelerate()
{
System.out.println("Drive");
}
void turn()
{
System.out.println("Turn!");
}
}
class n2wheels extends Inheritance {
void fast()
{
System.out.println("Swift Vehicle");
}
}
class n4wheels extends Inheritance {
void normal()
{
System.out.println("Average Vehicle");
}
}
class multiwheel extends Inheritance {
void slow()
{
System.out.println("Heavy Vehicle");
}
public static void main(String[] args)
{
Inheritance try1 = new Inheritance();
try1.normal();
}
}
您沒有一個名爲'no rmal'在你的類中稱爲'Inheritance'。 –
'normal'不是繼承的方法。 – luk2302
只是一個提示:關於Java中的繼承有很多解釋。看看這些並試圖瞭解它的含義以及它的工作原理。否則,你將來會遇到很多問題,因爲你顯然錯誤理解了那裏的某些東西。祝你好運! – Luftbaum