码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式之 单例模式

时间:2015-05-15 12:13:30      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Signleton_Pattern
{
    /// <summary>
    /// 世界上只有一个太阳
    /// </summary>
    public class Sun
    {
        //饿汉式单例 
        //自身的私有静态类作为属性
        private static Sun sun = new Sun();
        //构造方法私有化
        private Sun() { }
        //共有静态对象接口
        public static Sun GetSun()
        {
            return sun;
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Signleton_Pattern
{
    class Program
    {
        static void Main(string[] args)
        {
            Sun sun = Sun.GetSun();
            Console.WriteLine(sun.GetHashCode());
            Sun sun1 = Sun.GetSun();
            Console.WriteLine(sun1.GetHashCode());
            Console.ReadLine();
            //Sun sun1 = new Sun();
        }
    }
}

“创建”两个对象,其实获取的是一个,他们的hashcode是一样的。

技术分享

当你想new出一个对象是不允许的

技术分享


设计模式之 单例模式

标签:

原文地址:http://my.oschina.net/u/2004005/blog/415251

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