知识点: python创建多个构造方法 使用classmethod 将init的参数设为可变类型,在init语句中判断 class Rect: __length = 0 __width = 0 def __init__(self, l, w): self.__length = l self.__wi
7-2sdut-oop-6计算各种图形的周长(多态)(10分)接⼝继承 多态分割字符串 题⽬ 点击查看题⽬ # 代码 import java.util.Scanner;interface Shape{ double length();} class Triangle implements Shape{ double a;double b;double c;public Triangle(double a,double b,double c) { this.a=a;this.b=...
定义接口或类 Shape,定义求周长的方法length()。 定义如下类,实现接口Shape或父类Shape的方法。 (1)三角形类Triangle (2)长方形类Rectangle (3)圆形类Circle等。 定义测试类ShapeTest,用Shape接口(或类)定义变量shape,用其指向不同类形的对象,输出各种图形的周长。并为其他的Shape接口实现类提供良好的扩展性。