Design Pattern
文章平均质量分 77
buaawhl
这个作者很懒,什么都没留下…
展开
-
Design Pattern Introduction – catch the core
Design Pattern Introduction – catch the core(wang hailong) Data Type and Algorithm 数据类型和算法 Design Pattern(设计模式)的目标是,把共通问题中的不变部分和变化部分分离出来。不变的部分,就构成了Design Pattern(设计模式)。这一点和Framework(框架)有些象。原创 2003-03-10 11:33:00 · 1551 阅读 · 0 评论 -
A Simple Sample for Expression Tree
A Simple Sample for Expression Tree(wang hailong)我写过一篇用Visitor Pattern处理表达式树的例子。本文讲解表达式树处理的一般方法,给出一个简单例子的源代码,并给出相关解释。源代码通过编译,正确运行。java expr.TestMain首先,我们来看被表达式的类的定义。Expression.java 表达式类公用接口原创 2003-03-15 10:19:00 · 1713 阅读 · 0 评论 -
Design Pattern Introduction and Practice
Design Pattern Practice 1.序 本文从一个简单的多列排序的例子入手,由浅入深地讲解Design Pattern(设计模式)的目的、分析和实践。 文中的例子用到Compositor Pattern和Proxy Pattern ( or Decorator Pattern)。 (also, Simple Visitor, Functor) 同时,文中的例子也提供了一类问原创 2003-03-07 08:43:00 · 1752 阅读 · 0 评论