C#单例模式

如下:

sealed class Singleton
{
    Singleton() { }
    public static readonly Singleton Instance = new Singleton();
}

 

posted on 2013-08-04 18:33  yao2yao4  阅读(124)  评论(0编辑  收藏  举报

导航