内容目录
除了手动实现单例模式,也可以使用 Lazy 泛型实现单例模式。
public sealed class Singleton
{
private static readonly Lazy lazy = new Lazy(() => new Singleton());
public static Singleton Instance { get { return lazy.Value; } }
private Singleton()
{
}
}
文章评论