Head First 設計模式學習筆記(三)裝飾者模式續

裝飾者模式續。             public class LowerCaseInputStream extends FilterInputStream { public LowerCaseInputStream(InputStream in) { super(in); } public int read() throws IOException { int c = super.read()
相關文章
相關標籤/搜索