重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

Singleton设计模式(单实例)

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);
        }
    }
}

名称栏目:Singleton设计模式(单实例)
文章出自:http://cqcxhl.cn/article/gjdghj.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP