7-2 sdut-oop-6 计算各种图形的周长(多态) (10 分)<接口|继承|多态|分割字符串> 题目 点击查看题目 定义接口或类 Shape,定义求周长的方法length()。 定义如下类,实现接口Shape或父类Shape的方法。 (1)三角形类Triangle (2)长方形类Rectangle (3)圆形类Circle等。 定义测试类ShapeTest,用Shape接口(或类)...
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=...
知识点: python创建多个构造方法 使用classmethod 将init的参数设为可变类型,在init语句中判断 class Rect: __length = 0 __width = 0 def __init__(self, l, w): self.__length = l self.__wi