溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

IDisposable資源釋放接口

發(fā)布時(shí)間:2020-07-20 05:44:24 來(lái)源:網(wǎng)絡(luò) 閱讀:358 作者:刺激樂(lè)天派 欄目:編程語(yǔ)言

微軟自帶的注釋摘要

// 摘要: 

    //     定義一種釋放分配的資源的方法。

    [ComVisible(true)]

    public interface IDisposable

    {

        // 摘要: 

        //     執(zhí)行與釋放或重置非托管資源相關(guān)的應(yīng)用程序定義的任務(wù)。

        void Dispose();

    }


此接口的主要用途是釋放非托管資源。 當(dāng)不再使用托管對(duì)象時(shí),垃圾回收器會(huì)自動(dòng)釋放分配給該對(duì)象的內(nèi)存。 但無(wú)法預(yù)測(cè)進(jìn)行垃圾回收的時(shí)間。 另外,垃圾回收器對(duì)窗口句柄或打開(kāi)的文件和流等非托管資源一無(wú)所知。

將此接口的 Dispose 方法與垃圾回收器一起使用來(lái)顯式釋放非托管資源。 當(dāng)不再需要對(duì)象時(shí),對(duì)象的使用者可以調(diào)用此方法

因?yàn)?nbsp;IDisposable.Dispose 實(shí)現(xiàn)由類(lèi)型的使用者調(diào)用時(shí),實(shí)例屬于自己的資源不再需要,您應(yīng)將包裝在 SafeHandle (建議使用的替代方法) 的托管對(duì)象,則應(yīng)該重寫(xiě)Object.Finalize 來(lái)釋放非托管資源,忘記在使用者調(diào)用 Dispose條件下。

使用對(duì)象實(shí)現(xiàn) IDisposable

才能直接,使用非托管資源需要實(shí)現(xiàn) IDisposable。 如果應(yīng)用程序使用對(duì)象實(shí)現(xiàn) IDisposable,不提供 IDisposable 實(shí)現(xiàn)。 而,那么,當(dāng)您使用時(shí)完成,應(yīng)調(diào)用對(duì)象的IDisposable.Dispose 實(shí)現(xiàn)。 根據(jù)編程語(yǔ)言中,可以為此使用以下兩種方式之一:

  • 使用一種語(yǔ)言構(gòu)造 (在 C# 和 Visual Basic 中的 using 語(yǔ)句。

  • 通過(guò)切換到實(shí)現(xiàn) IDisposable.Dispose 的調(diào)用在 try/catch 塊。


//使用一種語(yǔ)言構(gòu)造 (在 C# 和 Visual Basic 中的 using 語(yǔ)句
using System;using System.IO;using System.Text.RegularExpressions;public class WordCount
{
   private String filename = String.Empty;
   private int nWords = 0;
   private String pattern = @"\b\w+\b"; 

   public WordCount(string filename)
   { 
        if (! File.Exists(filename))
                 throw new FileNotFoundException("The file does not exist.");
        this.filename = filename;
        string txt = String.Empty;
        using (StreamReader sr = new StreamReader(filename))
        {
             txt = sr.ReadToEnd();
             sr.Close();
         }
         nWords = Regex.Matches(txt, pattern).Count;
   } 
   public string FullName
   {
        get {
         return filename; 
         } 
    }
    public string Name
   {
         get { 
             return Path.GetFileName(filename); 
         } 
    }
    public int Count 
   { 
           get { 
               return nWords; 
           } 
   }
}
using System;
using System.IO;
using System.Text.RegularExpressions;
public class WordCount
{   
private String filename = String.Empty;   
private int nWords = 0;   
private String pattern = @"\b\w+\b"; 

   public WordCount(string filename)
   { 
        if (! File.Exists(filename))
                 throw new FileNotFoundException("The file does not exist.");      
       this.filename = filename;      
       string txt = String.Empty;
       StreamReader sr = null;
       try {
         sr = new StreamReader(filename);
         txt = sr.ReadToEnd();
         sr.Close();
      }catch {
      
      }
      finally {
               if (sr != null) sr.Dispose();     
      }
      nWords = Regex.Matches(txt, pattern).Count;
   } 
   public string FullName
   { 
       get {
        return filename; 
        } 
    }
    public string Name
   { 
       get { 
           return Path.GetFileName(filename); 
           } 
   }
   public int Count 
   { 
       get { 
           return nWords; 
           } 
    }
}


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI