我有一个超类 Shape.Java 接受某种形状的颜色,以及几个计算不同多边形面积的子类。我创建了一个主类,打印出用户想要计算的不同多边形选择。
public static void choices() {
System.out.println("What do you want to compute?");
System.out.println("a. Rectangle");
System.out.println("b. Triangle");
System.out.println("c. Trapezoid");
}
我为此使用了一个开关盒。
case 'a': {
System.out.print("Enter width: ");
double width = input.nextDouble();
System.out.print("\nEnter height: ");
double height = input.nextDouble();
.....
}
问题是,我将如何调用包含显示用户输入和计算区域的方法的子类 Rectangle(扩展超类 Shape)?这个对吗?
Shape rec = new Rectangle();
如果是这样,当我编译它时,我得到一个错误'找不到符号构造函数 Rectangle...'
请帮忙。