如何以及何时使用抽象类
2022-09-01 05:22:06
这是我在Java中的测试程序。我想知道有多少抽象类在这里更重要,以及为什么我们使用抽象类。
这是强制性的还是最好的方法;如果是这样,如何?
class Shape1 {
int i = 1;
void draw() {
System.out.println("this is shape:" + i);
}
}
class Shape2 {
int i = 4;
void draw() {
System.out.println("this is shape2:" + i);
}
}
class Shape {
public static void main(String args[]) {
Shape1 s1 = new Shape1();
s1.draw();
Shape2 s2 = new Shape2();
s2.draw();
}
}