真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在C#中實(shí)現(xiàn)單例類

今天就跟大家聊聊有關(guān)怎么在C#中實(shí)現(xiàn)單例類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

成都創(chuàng)新互聯(lián)公司是專業(yè)的克拉瑪依網(wǎng)站建設(shè)公司,克拉瑪依接單;提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行克拉瑪依網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

實(shí)現(xiàn)1:懶漢式,線程不安全

該實(shí)現(xiàn)沒有額外開銷,不要求線程安全的情況下可以使用:

public class Singleton1
{
  private static Singleton1 instance = null;
  private Singleton1() { }

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

實(shí)現(xiàn)2:懶漢式,線程安全

由于每次訪問單例類實(shí)例都會(huì)加鎖,而加鎖是一個(gè)非常耗時(shí)的操作,故不推薦使用:

public class Singleton2
{
  private readonly static object lockObj = new object();
  private static Singleton2 instance = null;
  private Singleton2() { }

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

實(shí)現(xiàn)3:餓漢式,線程安全

寫法簡(jiǎn)單,線程安全,但構(gòu)造時(shí)機(jī)不是由程序員掌控的:

public class Singleton3
{
  private static Singleton3 instance = new Singleton3();
  private Singleton3() { }
  public static Singleton3 Instance { get { return instance; } }

  public static void Test()
  {
    Console.WriteLine("test");
  }
}

當(dāng).NET運(yùn)行時(shí)發(fā)現(xiàn)第一次使用Singleton3時(shí)會(huì)創(chuàng)建單例的實(shí)例,而不是在第一次調(diào)用Singleton3.Instance屬性時(shí)創(chuàng)建,如進(jìn)行以下操作:

Singleton3.Test();

實(shí)現(xiàn)4:懶漢式,雙重校驗(yàn)鎖

在實(shí)現(xiàn)2的基礎(chǔ)上進(jìn)行改進(jìn),只在第一次創(chuàng)建實(shí)例時(shí)加鎖,提高訪問性能:

public class Singleton4
{
  private readonly static object lockObj = new object();
  private static Singleton4 instance = null;
  private Singleton4() { }

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

實(shí)現(xiàn)5:懶漢式,內(nèi)部類

在方法3的基礎(chǔ)上進(jìn)行改進(jìn),確保只有訪問Singleton5.Instance屬性時(shí)才會(huì)構(gòu)造實(shí)例:

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

實(shí)現(xiàn)單例基類

通過單例基類,我們可以簡(jiǎn)單的通過繼承創(chuàng)建一個(gè)單例類,實(shí)現(xiàn)代碼復(fù)用:

// 由于單例基類不能實(shí)例化,故設(shè)計(jì)為抽象類
public abstract class Singleton where T : class
{
  // 這里采用實(shí)現(xiàn)5的方案,實(shí)際可采用上述任意一種方案
  class Nested
  {
    // 創(chuàng)建模板類實(shí)例,參數(shù)2設(shè)為true表示支持私有構(gòu)造函數(shù)
    internal static readonly T instance = Activator.CreateInstance(typeof(T), true) as T;
  }
  private static T instance = null;
  public static T Instance { get { return Nested.instance; } }
}

使用方法如下:

class TestSingleton : Singleton
{
  // 將構(gòu)造函數(shù)私有化,防止外部通過new創(chuàng)建
  private TestSingleton() { }
}

C#是什么

C#是一個(gè)簡(jiǎn)單、通用、面向?qū)ο蟮木幊陶Z(yǔ)言,它由微軟Microsoft開發(fā),繼承了C和C++強(qiáng)大功能,并且去掉了一些它們的復(fù)雜特性,C#綜合了VB簡(jiǎn)單的可視化操作和C++的高運(yùn)行效率,以其強(qiáng)大的操作能力、優(yōu)雅的語(yǔ)法風(fēng)格、創(chuàng)新的語(yǔ)言特性和便捷的面向組件編程從而成為.NET開發(fā)的首選語(yǔ)言,但它不適用于編寫時(shí)間急迫或性能非常高的代碼,因?yàn)镃#缺乏性能極高的應(yīng)用程序所需要的關(guān)鍵功能。

看完上述內(nèi)容,你們對(duì)怎么在C#中實(shí)現(xiàn)單例類有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


文章題目:怎么在C#中實(shí)現(xiàn)單例類
轉(zhuǎn)載來(lái)源:http://weahome.cn/article/jhihhj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部