自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Beautyispower's top ideas about design

Simpler And Simpler And Simpler

  • 博客(9)
  • 收藏
  • 关注

原创 即将发表创建型模式论文敬请关注

即将发表创建型模式论文敬请关注

2004-08-16 21:42:00 2676 1

原创 My Composite in C#

//MyCompositeusing System;using System.Collections;//----------------------------------Class FileElementabstract class CFileElement{ //Fields protected string name;  public CFileElement(string name)

2004-08-16 21:40:00 1122

原创 My Bridge in C#

//MyBridgeusing System;//-------------------------------------------------Class Manager//parent classabstract class Manager{    //Method:KickOut abstract public void KickOut();};//sonclass1:Female

2004-08-16 21:36:00 1076 1

原创 My Adapter in C#

//MyAdapterusing System;//Class1class SimpleDrawer{ //Methods virtual public void SetColor(string name){}};//Adapter Class which enables class1 to use class2 methodsclass AssistantDrawer:SimpleDrawer{

2004-08-10 20:37:00 1091 2

原创 My Singleton in C#

//MySingletonusing System;//SingletonPage Classclass SingletonPage{ //Fields  protected static SingletonPage checkoutpage;  //Constructor is protected to ensure Singleton protected SingletonPage() {

2004-08-04 20:54:00 1223 5

原创 My Prototype in C#

//MyPrototypeusing System;using System.Collections;//abstract PageStylePrototype Class Prototypeabstract class PageStylePrototype{    //Fields protected string stylestring; //Properties public string

2004-08-04 20:05:00 1109 1

原创 My FactoryMethod in C#

//MyFactoryMethodusing System;using System.Collections;//SinglePage class,which build the at last product,part element//----top classabstract class SinglePage{};//----element1class RegisterPage:Single

2004-08-04 17:48:00 1048

原创 My Builder in C#

//MyBuilderusing System;using System.Collections;///////////////////////product///////////////////////class HomePage{ //Fields private string pagetype; private string samplecode; private Hashtable p

2004-08-04 15:46:00 1003

原创 My AbstractFactory in C#

//MyAbstractFactoryusing System;///////////////Basic Products//////////////// //AbstractProductsabstract class FontsStyle{ public string stylestring; };abstract class TablesStyle{ public string st

2004-08-04 15:28:00 919

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除