本案例要求编写一个程序,可以根据用户要求在控制台打印出不同的图形。例如,用户自定义半径的圆形和用户自定义边长的正方形。 要求使用子类和父类: (1)创建父类MyPrint类,包含show()方法,用于输出图形的形状。 (2)创建子类MyPrintSquare类,重写show ()方法,用“*”打印出边长为5的正方形。 (3)创建子类MyPrintCircle类,重写show ()方法, 用“*”打印出半径为5的圆。 (4)创建测试类,设计一个myshow(MyPrint a)方法,实现输出的功
时间: 2024-03-09 15:44:46 浏览: 155
GD32 MCU ISP 控制台用户手册 - 自定义MCU烧录软件
能。该方法接受一个MyPrint类型的参数a,调用a的show()方法实现输出图形。在测试类中,通过创建MyPrintSquare对象和MyPrintCircle对象,并调用myshow()方法,分别输出边长为5的正方形和半径为5的圆形。
以下是代码示例:
```
class MyPrint {
public void show() {
System.out.println("This is a shape.");
}
}
class MyPrintSquare extends MyPrint {
@Override
public void show() {
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
System.out.print("* ");
}
System.out.println();
}
}
}
class MyPrintCircle extends MyPrint {
@Override
public void show() {
int radius = 5;
for (int i = -radius; i <= radius; i++) {
for (int j = -radius; j <= radius; j++) {
if (i * i + j * j <= radius * radius) {
System.out.print("* ");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
public class Test {
public static void myshow(MyPrint a) {
a.show();
}
public static void main(String[] args) {
MyPrintSquare square = new MyPrintSquare();
MyPrintCircle circle = new MyPrintCircle();
myshow(square);
myshow(circle);
}
}
```
运行结果:
```
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
* * * * * * * * *
* * * * * * * * * * * *
* * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * *
* * * * * * * * * * * *
* * * * * * * * *
```
阅读全文