Java继承和组合区别

//继承实现类复用
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();

	}

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值