设计模式学习笔记——单件模式(Singleton Pattern)

学习TerryLee的设计模式颇有感触,留下以下笔记以作日后参考。

代码
   
     
// -----------------------------------------------
// Singleton模式要求一个类有且仅有一个实例,并且提供了一个全局的访问点。
// -----------------------------------------------

public class Person
{ }

public sealed class SinglePerson
{
protected static readonly Person person = new Person();

public Person Person
{
get
{
return person;
}
}
}

你可能感兴趣的:(Singleton)