You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
206 B

/**
* 图形父类:定义draw()方法规范
*/
public class Shape {
// 绘制方法(父类默认实现)
public void draw() {
System.out.println("绘制基础图形");
}
}