惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
博客园 - 聂微东
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 司徒正美
爱范儿
爱范儿
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
博客园 - 【当耐特】
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
人人都是产品经理
人人都是产品经理
V
V2EX

博客园 - 北溟鱼逍遥游

datepart in ssis Mac再建管理员帐户 [error] option strict on disallow late binding [SSIS 2005]SSIS Error The AcquireConnection method call to the connection manager failed with error code 0xC0202009 [SSIS 2005]the script task can not run this edition of integration service 团队的脊梁 求:C# 中nowarn 的 attribute msn group 转 大师 Proj summary Thinking snippets SQL server 2005 Enterprise Edition can't support AMD sepron 2500+ Can't found the specified domain: Web access LDAP Server - 北溟鱼逍遥游 C++/STL 笔记 经典:自己收藏 Understand office model Close window without alert DataGrid Item auto-generate serial number 给软件开发经理的建议
Singleton
北溟鱼逍遥游 · 2005-03-15 · via 博客园 - 北溟鱼逍遥游

using System;

public sealed class Singleton1
{
 static Singleton1 instance;
 Singleton1(){}
 public static Singleton1 Instance
 {
  get{
  if (instance == null)
  instance = new Singleton1();
  return instance;
 }
 }
}

public sealed class Singleton2
{
 static Singleton2 instance;
 static readonly object padlock = new object();
 
 public static Singleton2 Instance
 {
  get
  {
   lock (padlock)
   {
    if (instance == null)
    instance = new Singleton2();
   }
   return instance;
  }
 }
}

public sealed class Singleton3
{
 static Singleton3 instance;
 static readonly object padlock = new object();
 public static Singleton3 Instance
 {
  get{
  if (instance == null)
  lock(padlock){
  if (instance == null){
  instance = new Singleton3();
 }
}
       return instance;
}
 }
}

public sealed class Singleton4
{
 static readonly Singleton4 instance = new Singleton4();
 static Singleton4(){}
 Singleton4(){}
 
 public static Singleton4 Instance
 {
  get{
  return instance;
 }
}
}

public sealed class Singleton5
{
 Singleton5(){}
 
 public static Singleton5 Instance
 {
  get{
  return Nested.instance;
 }
}
 
 class Nested{
 static Nested(){}
 internal static readonly Singleton5 instance = new Singleton5();
 }
}