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

推荐订阅源

Help Net Security
Help Net Security
G
Google Developers Blog
雷峰网
雷峰网
WordPress大学
WordPress大学
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Engineering at Meta
Engineering at Meta
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
AWS News Blog
AWS News Blog
F
Full Disclosure
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Exploit Database - CXSecurity.com
J
Java Code Geeks
U
Unit 42
C
Cyber Attacks, Cyber Crime and Cyber Security
V
V2EX
C
Cisco Blogs
博客园 - 司徒正美
Project Zero
Project Zero
L
LINUX DO - 热门话题
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
Scott Helme
Scott Helme
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog
S
Securelist
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
G
GRAHAM CLULEY
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyberwarzone
Cyberwarzone
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
T
Threatpost
Recorded Future
Recorded Future
C
CXSECURITY Database RSS Feed - CXSecurity.com
宝玉的分享
宝玉的分享
N
News and Events Feed by Topic
人人都是产品经理
人人都是产品经理
The Register - Security
The Register - Security
S
Security Archives - TechRepublic
博客园 - Franky
N
News | PayPal Newsroom
Simon Willison's Weblog
Simon Willison's Weblog
S
SegmentFault 最新的问题
W
WeLiveSecurity
A
Arctic Wolf
B
Blog

博客园 - 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 11)Flyweight 10)Facade 09)Decorator 08)Composite 07)Bridge 06)Adapter 04)Factory Method
05)Prototype
AlanPaoPao · 2007-09-18 · via 博客园 - AlanPaoPao

    原型模式的目的是: 将用户与构造函数隔离,通过拷贝生成新对象。
    实例代码:

[Serializable]
class Person : ICloneable  //定义Person类
{
  
private string _name;  //姓名
  private int _age;      //年龄
  private string _sex;   //性别
  private int _stature;  //身高
  internal Person(string name, int age, string sex, int stature)
  
{
    
this._name = name; this._age = age;
    
this._sex = sex; this._stature = stature;
  }

  
public object Clone()  //通过序列化克隆人
  {
    Console.WriteLine(
"克隆前状态 Person Name:{0},Age:{1},Sex:{2},Stature:{3}",
      
this._name, this._age.ToString(), this._sex, this._stature.ToString());
    ICloneable person;
    System.IO.MemoryStream memoryStream 
= new System.IO.MemoryStream();
    System.Runtime.Serialization.Formatters.Binary.BinaryFormatter formatter 
= new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
    formatter.Serialize(memoryStream, 
this);
    
byte[] bs = memoryStream.ToArray();
    Console.Write(
"克隆中状态 Person:");
    
foreach (byte b in bs)
      Console.Write(b 
+ " ");
    memoryStream.Position 
= 0;
    person 
= (ICloneable)formatter.Deserialize(memoryStream);
    Console.WriteLine(
"\n克隆后状态 Person Name:{0},Age:{1},Sex:{2},Stature:{3}",
      ((Person)person)._name, ((Person)person)._age.ToString(), ((Person)person)._sex, ((Person)person)._stature.ToString());
    
return person; 
  }

}

class PersonManager  //控制类
{
  Hashtable persons 
= new Hashtable();
  
public ICloneable this[string name]
  
{
    
get
    
{
      
return persons[name] as ICloneable;
    }

  }

  
public void AddPerson(string name, int age, string sex, int stature)
  
{
    Person p 
= new Person(name,age,sex,stature);
    persons.Add(name, p);
  }

}

//测试
class MainApp
{
  
static void Main()
  
{
    PersonManager personManager 
= new PersonManager();
    personManager.AddPerson(
"小三"30""170);
    personManager.AddPerson(
"小四"26""178);
    personManager.AddPerson(
"小五"26""180);
    Person person 
= personManager["小五"].Clone() as Person;
    Console.Read();
  }

}