Linuxer, ex IBMer. GNU https://hmchzb19.github.io/
全部博文(297)
发布时间:2017-02-09 09:40:07
把不同的接口通过中间的adapter 连接在一起,概念很简单,看玩具代码很简单。点击(此处)折叠或打开package adapterpattern;class Apple{ public void getAppleColor(String color){ &.........【阅读全文】
发布时间:2017-02-08 10:52:26
就是通过clone() 来创建一个新的对象。代码一看就明白了,java 实现Cloneable()接口而实现的clone() 方法是shallow copy. 点击(此处)折叠或打开package prototypepattern;class Bike implements Cloneable{ &n.........【阅读全文】
发布时间:2017-02-07 10:25:40
The intent of the builder Pattern is to separate the construction of complex object from its representation,so that the same construction process can create different representation. Adding a new implementation (i.e adding a new builder) becomes easier, the object construction process becomes.........【阅读全文】
发布时间:2017-02-06 14:44:17
这个desgin pattern 的意思是factory of factories, 不同于factory pattern, 根据用户的input 来new 不同的对象,这里是直接new 不同的factory。然后让不同的工厂来负责生产不同的对象。我觉得已经有让人找不到干活的代码到底在哪里的意思了。Usage in JDK: javax.xml.parsers.DocumentBuilderFactory #newInstance.........【阅读全文】
发布时间:2017-02-05 16:36:53
最近看的java design pattern 都出自 Java design patterns 一书。这个factory pattern 要取决于用户的输入来实例化不同的类。 而super class 可以是个interface ,也可以是个普通的类。Usage in JDK: 值得一看java.util.Calendar, ResourceBundle, and NumberFormat geninstance() methods use Factory pattern..........【阅读全文】
fireboyz20052010-11-10 18:27
HI, 看到你"http://bbs.chinaunix.net/viewthread.php?tid=1806065"
这里的提问,你是不是在看一本叫《Shell脚本专家指南》的书?我也在阅读,我新手,不如大家交流一下,看到不明白也可以大家一起研究研究。
我的qq是:369035906
或gtalk:jiale.chan@gmail.com