码迷,mamicode.com
首页 >  
搜索关键字:designpattern    ( 138个结果
DesignPattern_Behavioral_Command
using System.Collections.Generic;namespace DesignPattern.Behavioral.Command{ public class Receiver { public void ShowA() { } publi...
分类:其他好文   时间:2014-11-14 19:28:50    阅读次数:140
DesignPattern_Structural_Proxy
namespace DesignPattern.Structural.Proxy{ public interface IShow { void Show(); } public class Subject:IShow { public voi...
分类:其他好文   时间:2014-11-14 19:22:06    阅读次数:138
DesignPattern_Creational_AbstractFactory
using System.Reflection;namespace DesignPattern.Creational.AbstractFactory{ public interface IProductA { } public interface IProductB { } pub...
分类:其他好文   时间:2014-11-14 19:22:03    阅读次数:183
DesignPattern_Creational_Prototype
using System;namespace DesignPattern.Creational.Prototype{ public class Prototype:ICloneable { public object Clone() { ...
分类:其他好文   时间:2014-11-14 19:21:45    阅读次数:172
DesignPattern_Structural_Decorator
namespace DesignPattern.Structural.Decorator{ public class Component { public virtual void Show() { } } public class Decorator:Comp...
分类:其他好文   时间:2014-11-14 19:20:42    阅读次数:168
DesignPattern_Structural_Flyweight
using System.Collections.Generic;namespace DesignPattern.Structural.Flyweight{ public abstract class Flyweight { public abstract void Sho...
分类:其他好文   时间:2014-11-14 19:20:05    阅读次数:135
DesignPattern_Structural_Bridge
namespace DesignPattern.Structural.Bridge{ public class Bridge { private IShow _iShow; public void Set(IShow ishow) { ...
分类:其他好文   时间:2014-11-14 19:20:02    阅读次数:248
Instances Based on Opencv2: A Simple Analysis of MVC Architecture
Afewmonthsago,oneofmyfriendsaskedmeforafavorthathewantedmetohelphimoutwithhisdigitalrecognitionproject.Fortunately,IhaddecidedtogofurtherforamasterdegreeandIhadplentyoftime,moreoverIwastotallyinterestedincomputervision,soIwashappytodohimafavor.Soonenough,If..
分类:Web程序   时间:2014-11-09 06:25:29    阅读次数:335
2.1.2 工厂方法模式(3.3)
工厂方法模式(factory method pattern)从2方面认识。 编程技巧:这是对参数化工厂方法加以改进的经典技术,以多态来重构if-else、switch-case等分支结构。 设计思路:Client关注的是工厂!...
分类:其他好文   时间:2014-09-12 17:20:03    阅读次数:180
3.2.4 方法类型化
方法类型化——将某个或某些方法(准确的说,是方法头或接口) 提升为类型,是方法型模式的共同技术基础和设计思路。...
分类:其他好文   时间:2014-09-08 02:12:26    阅读次数:253
138条   上一页 1 ... 11 12 13 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!