微軟自帶的注釋摘要
成都創(chuàng)新互聯(lián)專注于鉛山網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供鉛山營銷型網(wǎng)站建設(shè),鉛山網(wǎng)站制作、鉛山網(wǎng)頁設(shè)計(jì)、鉛山網(wǎng)站官網(wǎng)定制、小程序設(shè)計(jì)服務(wù),打造鉛山網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供鉛山網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
// 摘要:
// 定義一種釋放分配的資源的方法。
[ComVisible(true)]
public interface IDisposable
{
// 摘要:
// 執(zhí)行與釋放或重置非托管資源相關(guān)的應(yīng)用程序定義的任務(wù)。
void Dispose();
}
此接口的主要用途是釋放非托管資源。 當(dāng)不再使用托管對象時(shí),垃圾回收器會(huì)自動(dòng)釋放分配給該對象的內(nèi)存。 但無法預(yù)測進(jìn)行垃圾回收的時(shí)間。 另外,垃圾回收器對窗口句柄或打開的文件和流等非托管資源一無所知。
將此接口的 Dispose 方法與垃圾回收器一起使用來顯式釋放非托管資源。 當(dāng)不再需要對象時(shí),對象的使用者可以調(diào)用此方法
因?yàn)?nbsp;IDisposable.Dispose 實(shí)現(xiàn)由類型的使用者調(diào)用時(shí),實(shí)例屬于自己的資源不再需要,您應(yīng)將包裝在 SafeHandle (建議使用的替代方法) 的托管對象,則應(yīng)該重寫Object.Finalize 來釋放非托管資源,忘記在使用者調(diào)用 Dispose條件下。
才能直接,使用非托管資源需要實(shí)現(xiàn) IDisposable。 如果應(yīng)用程序使用對象實(shí)現(xiàn) IDisposable,不提供 IDisposable 實(shí)現(xiàn)。 而,那么,當(dāng)您使用時(shí)完成,應(yīng)調(diào)用對象的IDisposable.Dispose 實(shí)現(xiàn)。 根據(jù)編程語言中,可以為此使用以下兩種方式之一:
使用一種語言構(gòu)造 (在 C# 和 Visual Basic 中的 using 語句。
通過切換到實(shí)現(xiàn) IDisposable.Dispose 的調(diào)用在 try/catch 塊。
//使用一種語言構(gòu)造 (在 C# 和 Visual Basic 中的 using 語句 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; } } }