资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

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://cdkjz.cn/article/gjdghj.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220