gpt4 book ai didi

java - 继承java "cannot find symbol"

转载 作者:行者123 更新时间:2023-12-02 13:22:58 25 4
gpt4 key购买 nike

今天早上我们讨论了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();
}
}

最佳答案

您的Inheritance类中没有正常方法。

至少做:

class Inheritance {

void accelerate() {
System.out.println("Drive");
}

void turn() {
System.out.println("Turn!");
}

void normal(){}
}

或者:

n4wheels try1 = new n4wheels();
try1.normal();

作为侧节点:请以大写开头的类名。 N4WheelsMultiWheels 等...

关于java - 继承java "cannot find symbol",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43493492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com