Edmund's zone

导航

2011年7月8日 #

Decorator Pattern

摘要: Time for Decorator pattern:Use Espresso, DarkRoast and HouseBlend coffee as the ConcreteComponent, Soy, Mocha and Whip as the ConcreteDecorate.Here is the code:using System;namespace DecoratorPattern{ class Program { static void Main(string[] args) { Beverage beverage = new Espresso(); Console.Write 阅读全文

posted @ 2011-07-08 08:49 Edmund Li 阅读(200) 评论(0) 推荐(0) 编辑