惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

博客园 - AlanPaoPao

23)Visitor 22)Template 21)Strategy 20)State 19)Observer 18)Memento 17)Mediator 16)Iterator 15)Interpreter 14)Command 13)Chain Of Responsibility 12)Proxy 10)Facade 09)Decorator 08)Composite 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
11)Flyweight
AlanPaoPao · 2007-09-19 · via 博客园 - AlanPaoPao

    享元模式的目的是: 使多个客户共享使用数量有限的对象
    实例代码(类似于String类中实例):

abstract class Character
{
  
protected char symbol;
  
protected int width;
  
protected int height;
  
protected int ascent;
  
protected int descent;
  
protected int pointSize;
  
public abstract void Display(int pointSize);
}

class CharacterA : Character
{
  
public CharacterA()
  
{
    
this.symbol = 'A';
    
this.height = 100;
    
this.width = 120;
    
this.ascent = 70;
    
this.descent = 0;
  }

  
public override void Display(int pointSize)
  
{
    
this.pointSize = pointSize;
    Console.WriteLine(
this.symbol + " (pointsize " + this.pointSize + ")");
  }

}

class CharacterB : Character
{
  
public CharacterB()
  
{
    
this.symbol = 'B';
    
this.height = 100;
    
this.width = 140;
    
this.ascent = 72;
    
this.descent = 0;
  }

  
public override void Display(int pointSize)
  
{
    
this.pointSize = pointSize;
    Console.WriteLine(
this.symbol + " (pointsize " + this.pointSize + ")");
  }

}

class CharacterZ : Character
{
  
public CharacterZ()
  
{
    
this.symbol = 'Z';
    
this.height = 100;
    
this.width = 100;
    
this.ascent = 68;
    
this.descent = 0;
  }

  
public override void Display(int pointSize)
  
{
    
this.pointSize = pointSize;
    Console.WriteLine(
this.symbol + " (pointsize " + this.pointSize + ")");
  }

}

class CharacterFactory
{
  
private Hashtable characters = new Hashtable();
  
public Character GetCharacter(char key)
  
{
    Character character 
= characters[key] as Character;
    
if (character == null)
    
{
      
switch (key)
      
{
        
case 'A': character = new CharacterA(); break;
        
case 'B': character = new CharacterB(); break;
        
// 
        case 'Z': character = new CharacterZ(); break;
      }

      characters.Add(key, character);
    }

    
return character;
  }

}

class MainApp
{
  
static void Main()
  
{
    
string document = "AAZZBBZB";
    
char[] chars = document.ToCharArray();
    CharacterFactory f 
= new CharacterFactory();
    
int pointSize = 10;
    
foreach (char c in chars)
    
{
      pointSize
++;
      Character character 
= f.GetCharacter(c);
      character.Display(pointSize);
    }

    Console.Read();
  }

}