码迷,mamicode.com
首页 > Web开发 > 详细

.NET设计模式之(单例模式)

时间:2014-08-06 23:05:42      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:.net   设计模式   单例   

1.单例模式,一个类只能new一个对象

2.举例,资源管理器,文件管理器,地球等;

3.创建单例:

(1)创建一个Earth类

class Earth

{

       public Earth()

       {


        }

}

(2)将构造函数 私有化

class Earth

{

       private Earth()

       {


        }

}

(3)声明一个静态私有的字段,初始化一个实例

class Earth

{

       private static Earth instance=new Earth();

       private Earth()

       {


        }

}

(4)编写一个静态方法或属性,返回唯一的实例

class Earth

{

       private static Earth instance=new Earth();

       public static Earth GetEarth()

       {

                  return instance;

       }

       private Earth()

       {


        }

}


.NET设计模式之(单例模式),布布扣,bubuko.com

.NET设计模式之(单例模式)

标签:.net   设计模式   单例   

原文地址:http://blog.csdn.net/abc456456456456/article/details/38406529

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!