//继承实现类复用
class Animal{
private void beast() {
System.out.println("心脏跳动...");
}
public void breath() {
beast();
System.out.println("呼吸中...");
}
}
//继承Animal,直接复用父类的breath()方法
class Bird extends Animal{
public void fly() {
System.out.println("我在天空中自由的飞...");
}
}
class Wolf extends Animal{
public void run() {
System.out.println("我在陆地上快速的奔跑...");
}
}
public class InheritTest {
public static void main(String[] args) {
Bird b = new Bird();
b.breath();
b.fly();
Wolf w = new Wolf();
w.breath();
w.run();
}
}
//组合实现类复用
class Animal1{
private void beast() {
System.out.println("心脏跳动...");
}
public void breath() {
beast();
System.out.println("呼吸中...");
}
}
class Bird1{
//将原来的父类组合到原来的子类,作为子类的一个组成部分
private Animal1 a;
public Bird1(Animal1 a) {
this.a = a;
}
//重新定义的自己的breath()方法
public void breath() {
//直接复用Animal提供的Breath()方法来实现Bird的Breath()方法
a.breath();
}
public void fly() {
System.out.println("我在天空中自由的飞...");
}
}
class Wolf1 {
private Animal1 a;
public Wolf1(Animal1 a) {
this.a = a;
}
public void breath() {
a.breath();
}
public void run() {
System.out.println("我在陆地上快速的奔跑...");
}
}
public class CompositeTest {
public static void main(String[] args) {
//需要显式创建被组合对象
Animal1 a1 = new Animal1();
Bird1 b = new Bird1(a1);
b.breath();
b.fly();
//需要显式创建被组合对象
Animal1 a2 = new Animal1();
Wolf1 w = new Wolf1(a2);
w.breath();
w.run();
}
}