装饰器模式简介
装饰器模式是GOF23种设计模式中较为常用的一种模式。它可以实现对现有类的包装和装饰,使新的类具有更强的功能。
装饰器模式
class Iphone {private String name;public Iphone(String name){this.name = name;}public void show(){System.out.println("我是" + name + ",可以在屏幕上显示");}
}class TouyingPhone {public Iphone phone;public TouyingPhone(Iphone p){this.phone = p;}//功能更强的方法public void show(){phone.show();System.out.println("还可以投影,在墙壁上显示");}
}public class TestDecoration {public static void main(String[] args){Iphone phone = new Iphone("iphone30");phone.show();System.out.println("===================装饰后");TouyingPhone typhone = new TouyingPhone(phone);typhone.show();}
}
IO流体系中的装饰器模式
IO流体系中大量使用了装饰器模式,让流具有更强的功能,更强的灵活性。比如:
FileInputStream fis = new FileInputStream(src);
BufferedInputStream bis = new BufferedInputStream(fis);
显然BufferedInputStream装饰了原有的FileInputStream,让普通的FileInputStream也具备了缓存功能,提高了效率。