JAVA IO流與裝飾者模式

裝飾者模式(decorator)介紹 定義: 動態地將責任附加到對象上。若要擴展功能,裝飾者提供了比繼承更有彈性的替代方案。java 例子: package wfb.test; public class decorator { public static void main(String[] args) { String name = "bin"; A a = new A(name); B b =
相關文章
相關標籤/搜索