今天就跟大家聊聊有關(guān)如何在C#項目中使用Lazy,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)是工信部頒發(fā)資質(zhì)IDC服務(wù)器商,為用戶提供優(yōu)質(zhì)的資陽移動機房服務(wù)使用 Lazy
你可以自己寫一段邏輯來實現(xiàn) 延遲初始化,在 .Net Framework 4.0 之后就沒必要了, 因為在 System 命名空間下已經(jīng)提供了 Lazy
當(dāng)使用 Lazy
Lazy> orders = new Lazy >(); IEnumerable result = lazyOrders.Value;
現(xiàn)在,考慮下面的兩個類: Author 和 Blog,一個作者可以寫很多文章,所以這兩個類之間是 一對多 的關(guān)系,下面的代碼片段展示了這種關(guān)系。
public class Author { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Address { get; set; } public ListBlogs { get; set; } } public class Blog { public int Id { get; set; } public string Title { get; set; } public DateTime PublicationDate { get; set; } }
值得注意的是,關(guān)系型數(shù)據(jù)庫中的 一對多 關(guān)系映射到對象模型就是 Author 類中增加一個 List Blogs 屬性,使用這個屬性,Author 就可以維持一個或者多個 Blog 實例對象,對吧。
現(xiàn)在假定在 用戶界面 上僅需展示 Author 的基礎(chǔ)信息,比如說:(firstname,lastname,address),在這種場景下,給 Author 對象加載 Blogs 集合是毫無意義的,當(dāng)真的需要加載 Blogs 時,執(zhí)行 Blogs.Value 即可立即執(zhí)行,下面展示了 Lazy
public class Author { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Address { get; set; } public Lazy> Blogs => new Lazy >(() => GetBlogDetailsForAuthor(this.Id)); private IList GetBlogDetailsForAuthor(int Id) { //Write code here to retrieve all blog details for an author. } }
接下來讓我們看看如何使用泛型的 Lazy 實現(xiàn)單例模式,下面的 StateManager 是線程安全的,同時為了演示 延遲初始化,我使用了 靜態(tài)構(gòu)造函數(shù) 來確保 C# 編譯器不會將它標(biāo)記為 beforefieldinit。
public sealed class StateManager { private StateManager() { } public static StateManager Instance { get { return Nested.obj; } } private class Nested { static Nested() { } internal static readonly StateManager obj = new StateManager(); } }
下面我用 Lazy
public class StateManager { private static readonly Lazyobj = new Lazy (() => new StateManager()); private StateManager() { } public static StateManager Instance { get { return obj.Value; } } }
可以瞄一下上面代碼的 Instance 屬性,它被做成只讀屬性了,同時也要注意 obj.Value 也是一個只讀屬性。
public class Lazy{ public T Value { get { if (_state != null) { return CreateValue(); } return _value; } } }
看完上述內(nèi)容,你們對如何在C#項目中使用Lazy有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。