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

Singleton设计模式(单实例)

时间:2015-03-13 02:02:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:单实例

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

//Singleton设计模式(单实例)
namespace ConsoleApplication6
{
    class Program
    {
        static void Main(string[] args)
        {
            //案例:
            Singleton s = Singleton.getSingleton();
            s.name = "asd";
            Singleton s1 = Singleton.getSingleton();
            s1.ShowMsg();
            Console.ReadKey();
        }
    }
    class Singleton
    {
        //静态类(自己)
        private static Singleton singleton = null;
        //私有构造函数
        private Singleton() { }
        public static Singleton getSingleton()
        {
            if (singleton == null)
                singleton = new Singleton();//实例化
            return singleton;
        }

        public string name { get; set; }
        public void ShowMsg()
        {
            Console.WriteLine(name);
        }
    }
}

本文出自 “程序猿的家--Hunter” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1619837

Singleton设计模式(单实例)

标签:单实例

原文地址:http://962410314.blog.51cto.com/7563109/1619837

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