using System.Collections.Generic;namespace DesignPattern.Behavioral.Command{ public class Receiver { public void ShowA() { } publi...
分类:
其他好文 时间:
2014-11-14 19:28:50
阅读次数:
140
namespace DesignPattern.Structural.Proxy{ public interface IShow { void Show(); } public class Subject:IShow { public voi...
分类:
其他好文 时间:
2014-11-14 19:22:06
阅读次数:
138
using System.Reflection;namespace DesignPattern.Creational.AbstractFactory{ public interface IProductA { } public interface IProductB { } pub...
分类:
其他好文 时间:
2014-11-14 19:22:03
阅读次数:
183
using System;namespace DesignPattern.Creational.Prototype{ public class Prototype:ICloneable { public object Clone() { ...
分类:
其他好文 时间:
2014-11-14 19:21:45
阅读次数:
172
namespace DesignPattern.Structural.Decorator{ public class Component { public virtual void Show() { } } public class Decorator:Comp...
分类:
其他好文 时间:
2014-11-14 19:20:42
阅读次数:
168
using System.Collections.Generic;namespace DesignPattern.Structural.Flyweight{ public abstract class Flyweight { public abstract void Sho...
分类:
其他好文 时间:
2014-11-14 19:20:05
阅读次数:
135
namespace DesignPattern.Structural.Bridge{ public class Bridge { private IShow _iShow; public void Set(IShow ishow) { ...
分类:
其他好文 时间:
2014-11-14 19:20:02
阅读次数:
248
Afewmonthsago,oneofmyfriendsaskedmeforafavorthathewantedmetohelphimoutwithhisdigitalrecognitionproject.Fortunately,IhaddecidedtogofurtherforamasterdegreeandIhadplentyoftime,moreoverIwastotallyinterestedincomputervision,soIwashappytodohimafavor.Soonenough,If..
分类:
Web程序 时间:
2014-11-09 06:25:29
阅读次数:
335
工厂方法模式(factory method pattern)从2方面认识。
编程技巧:这是对参数化工厂方法加以改进的经典技术,以多态来重构if-else、switch-case等分支结构。
设计思路:Client关注的是工厂!...
分类:
其他好文 时间:
2014-09-12 17:20:03
阅读次数:
180
方法类型化——将某个或某些方法(准确的说,是方法头或接口) 提升为类型,是方法型模式的共同技术基础和设计思路。...
分类:
其他好文 时间:
2014-09-08 02:12:26
阅读次数:
253