继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

单例模式(C#)

kala16
关注TA
已关注
手记 260
粉丝 18
获赞 134

学习设计模式,一直没有机会写一个单例模式。

今天在控制台应用程序,写个简单的例子,Hi与Hello。

 

 public sealed class At    {        private static At instance = null;        public static At Instance        {            get            {                if (instance == null)                {                    instance = new At();                }                return instance;            }        }        public void Hello()        {            Console.WriteLine("Hello");        }        public void Hi()        {            Console.WriteLine("Hi");        }    }

Source Code

 

测试:

 

单例类,宣告为sealed,也就是说阻止其他类从该类继承。对象只是本身。

考虑到线程安全,可以有代码中,添加几行代码:

 

public sealed class At    {        private static At instance = null;        private static readonly object threadSafeLock = new object();        public static At Instance        {            get            {                lock (threadSafeLock)                {                    if (instance == null)                    {                        instance = new At();                    }                    return instance;                }            }        }        public void Hello()        {            Console.WriteLine("Hello");        }        public void Hi()        {            Console.WriteLine("Hi");        }    }

Source Code

 

下面内容于2017-12-12 08:10分添加:
补充,上面的写法是每次加锁,性能多少有些损失。 解决此问题可以加个判断对象没有实例化时加锁。

public static At Instance        {            get            {                if (instance == null)                {                    lock (threadSafeLock)                    {                        if (instance == null)                        {                            instance = new At();                        }                    }                }                return instance;            }        }

Source Code

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP