整理一下 System.Linq.Enumerable 類中的那些比較少用的方法

来源:https://www.cnblogs.com/h82258652/archive/2018/04/10/8779461.html
-Advertisement-
Play Games

Linq 雖然用得多,但是裡面有一些方法比較少用,因此整理一下。Enumerable 類的所有方法可以在 MSDN 上查閱到:https://msdn.microsoft.com/zh-cn/library/system.linq.enumerable.aspx Aggregate 這個方法有三個重 ...


Linq 雖然用得多,但是裡面有一些方法比較少用,因此整理一下。Enumerable 類的所有方法可以在 MSDN 上查閱到:https://msdn.microsoft.com/zh-cn/library/system.linq.enumerable.aspx

 

Aggregate

這個方法有三個重載,先看第一個

Aggregate<TSource>(IEnumerable<TSource>, Func<TSource, TSource, TSource>)

參數是接受兩個 TSource 類型的輸入,返回一個 TSource 類型的輸出。

按照 MSDN 上的說明,輸入的第一個參數是累加的值,第二個參數是元素。

{
    int[] array = new[] { 1, 2, 3, 4, 5 };
    int result = array.Aggregate((sum, i) => sum + i);
    Console.WriteLine(result);
}
{
    string[] array = new string[] { "hello", "world", "!" };
    string result = array.Aggregate((combine, str) =>
    {
        return combine + " " + str;
    });
    Console.WriteLine(result);
}

則會輸出 15 和 hello world !

在第一次進入 Aggregate 的 Func 時,combine 的值為第一個元素的值,str 為第二個元素的值。

當輸入的序列的元素個數為 0 時,則拋出 InvalidOperationException 異常。

QQ截圖20180410123951

而當元素的個數只有一個的時候,則不會執行 Func。

接下來看第二個重載

Aggregate<TSource, TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>)

比起第一個重載,多了一個參數輸入參數 TAccumulate,泛型參數也變成了兩個。

{
    int[] array = new[] { 1, 2, 3, 4, 5 };
    long result = array.Aggregate(-1L, (sum, i) =>
    {
        return sum + i;
    });
    Console.WriteLine(result);
}

那麼這段代碼的輸出則會是 14。第一次進入 Func 的時候,sum 的值為 -1L,i 的值是 1,這個行為跟第一個重載稍微有點區別。

而且當元素只有一個的時候,也是會進入 Func 的

QQ截圖20180410124719

當序列為空的時候,也不會觸發到異常

QQ截圖20180410124856

直接等於輸入參數的值。

第三個重載

Aggregate<TSource, TAccumulate, TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>, Func<TAccumulate, TResult>)

這個其實就是相當與第二個重載增加了最後一個參數

{
    string[] array = new string[] { "hello", "world", "!" };
    string result = array.Aggregate("start", (combine, str) =>
    {
        return combine + " " + str;
    }, end => end.ToUpperInvariant());
    Console.WriteLine(result);
}

執行後會輸出 START HELLO WORLD !。

最後的那個參數相對於對最終結果進行了一下處理,跟下麵的代碼是等價的。

{
    string[] array = new string[] { "hello", "world", "!" };
    string result = array.Aggregate("start", (combine, str) =>
    {
        return combine + " " + str;
    }).ToUpperInvariant();
    Console.WriteLine(result);
}

 

DefaultIfEmpty

第一個重載

DefaultIfEmpty<TSource>(IEnumerable<TSource>)

snipaste_20180410_130422

snipaste_20180410_130457

就是說,如果一個序列的元素個數是零個的話,那就返回一個只有一個 default(TSource) 元素的序列。感覺這沒啥用(lll¬ω¬)

看另一個重載

DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource)

多了個參數,猜也猜得出來了

snipaste_20180410_130857

snipaste_20180410_130942

唔,好像還是沒啥實用意義…………

 

Except

Except<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)

求差集

snipaste_20180410_131437

A 序列減去 B 序列,並且去重了。

另一重載

Except<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)

多了一個比較器

snipaste_20180410_131741

最後只會輸出 Hello,因為在 IgnoreCase 比較器下,world 和 WORLD 是一樣的。

 

GroupBy

雖然用得還是比較多,但是重載比較多,還是寫一下吧。

GroupBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)

這個是最簡單的重載了。

snipaste_20180410_132350

根據 Age 分組,這個重載很簡單,也是最常用的。

GroupBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)

多了一個比較器,不難

snipaste_20180410_132621

snipaste_20180410_132655

Key 會根據第一次匹配到的值。

GroupBy<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)

snipaste_20180410_133013

第一個重載的改版而且,如果將上面的 person => person.Name 改為 person => person,那跟第一個重載沒區別。

GroupBy<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)

多了一個比較器而已,不說了。

GroupBy<TSource, TKey, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>, TResult>)

snipaste_20180410_133702

分完組後對每一組進行了一下處理。

GroupBy<TSource, TKey, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>, TResult>, IEqualityComparer<TKey>)

比上面多了一個比較器,不說了。

GroupBy<TSource, TKey, TElement, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>, TResult>)

多了元素選擇的參數重載,參考上面。

GroupBy<TSource, TKey, TElement, TResult>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>, TResult>, IEqualityComparer<TKey>)

多了選擇器,不說。

 

Join

Join<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>)

這個其實不難,只要參考一下 SQL 中的 inner join 的話。

先初始化測試數據

List<Person> list1 = new List<Person>()
{
    new Person()
    {
        Id = 1,
        Gender = "M"
    },
    new Person()
    {
        Id = 2 ,
        Gender = "F"
    },
    new Person()
    {
        Id = 3,
        Gender = "M"
    }
};
List<Student> list2 = new List<Student>()
{
    new Student()
    {
        Id = 1,
        Name = "martin"
    },
    new Student()
    {
        Id = 2,
        Name = "valid void"
    },
    new Student()
    {
        Id = 4,
        Name = "justin"
    }
};

然後測試代碼走起

snipaste_20180410_135801

沒啥難的,等價於以下的 linq 寫法

snipaste_20180410_140346

Join<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>, IEqualityComparer<TKey>)

多了個比較器,用於比較 key,不說了。

 

GroupJoin

GroupJoin<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>, TResult>)

看上去很複雜,但其實可以參考 Join 的輸入進行對比。

測試數據我們還是沿用 Join 的。執行測試代碼

snipaste_20180410_141037

對等的 linq 寫法如下

var result = (from person in list1
              join student in list2 on person.Id equals student.Id into studentGroup
              select new
              {
                  Id = person.Id,
                  Gender = person.Gender,
                  Students = studentGroup.ToList()
              }).ToList();

GroupJoin<TOuter, TInner, TKey, TResult>(IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>, TResult>, IEqualityComparer<TKey>)

多了一個比較器,不說了。

 

SelectMany

這個最近這段時間用得比較多,也記錄一下吧

SelectMany<TSource, TResult>(IEnumerable<TSource>, Func<TSource, IEnumerable<TResult>>)

測試代碼

snipaste_20180410_142134

簡單的來說就是將一個 IEnumerable<IEnumerable<T>> 的序列變成一個 IEnumerable<T> 的序列。

對等的 linq 寫法

snipaste_20180410_142358

感覺 linq 寫法會相對比較好理解的說。

SelectMany<TSource, TResult>(IEnumerable<TSource>, Func<TSource, Int32, IEnumerable<TResult>>)

Func 多了個 Int32 的參數,看測試代碼

snipaste_20180410_142808

snipaste_20180410_142818

很好理解,就是當前的索引。

SelectMany<TSource, TCollection, TResult>(IEnumerable<TSource>, Func<TSource, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>)

比起第一個就是多了個結果執行而已

snipaste_20180410_143405

會進入這個 Func 四次,前兩次是 helloword 那個 List,後兩次是 justin martin 那個 List。

SelectMany<TSource, TCollection, TResult>(IEnumerable<TSource>, Func<TSource, Int32, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>)

多了索引,參考上面。

 

SequenceEqual

序列比較,知道有這個東西,但平時好像沒有怎麼用過。

SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>)

snipaste_20180410_144435

很好理解,首要前提肯定是元素個數相等,其次要每一個元素相等。

SequenceEqual<TSource>(IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)

多了個比較器,不說了。

 

SkipWhile

Skip 倒是一直在用,SkipWhile 就用得比較少,也記錄一下吧。

SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>)

不難,就是當 Func 返回 false 時停止。

snipaste_20180410_145113

因為當去到 3 的時候為 false,因此返回 3 和剩下的元素。

SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource, Int32, Boolean>)

多了個索引而已,沒啥好說的。

 

ToDictionary

先看第一個重載

ToDictionary<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)

不難,Func 就是獲取按照什麼來生成 Key。

snipaste_20180410_145804

另外使用這個方法是要註意,Key 是不能重覆的。

snipaste_20180410_145939

所以說實話,這方法平時比較少用。。。

ToDictionary<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)

多了一個比較器,沒啥好說的。

ToDictionary<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)

比起第一個重載,多了一個如何生成字典的值的 Func,也沒啥好說的。

ToDictionary<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)

多了比較器,不說了。

 

ToLookup

這個有點像上面的 ToDictionary 的。

ToLookup<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)

跟 ToDictionary 的第一個重載的輸入參數是一樣的。

snipaste_20180410_150636

ILookup<int, Person> 這個的結構類似於一個數組,然後每個數組的元素是一個 Group。

當元素的 Key 重覆的時候:

snipaste_20180410_151211

那麼這個 lookup 就只有一個 group 了,但這個 group 就會有多個元素。

ToLookup<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)

ToLookup<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)

ToLookup<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)

這三個重載可以參考一下 ToDictionary 的重載,一樣的說。

 

Zip

這個方法就只有一個,沒別的重載

Zip<TFirst, TSecond, TResult>(IEnumerable<TFirst>, IEnumerable<TSecond>, Func<TFirst, TSecond, TResult>)

snipaste_20180410_151919

這裡就借用 MSDN 上的示例代碼了,看結果也看得出 Zip 這個操作的邏輯了。遍歷兩個序列進行操作,直到其中一個到達尾部。

 

另外像 TakeWhile 可以參考上面的 SkipWhile 就不說了。Distinct、Union 和 Intersect 平時也用得比較多,因此也不說了。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 概述 UWP Community Toolkit Extensions 中有一個為TextBox 提供的 SurfaceDial 擴展 - SurfaceDialTextbox,本篇我們結合代碼詳細講解 SurfaceDialTextbox 的實現。 SurfaceDialTextbox 為 Tex ...
  • 《.NET 開源Protobuf-net從入門到精通》課程包含以下兩個部分: 一、.NET 開源Protobuf-net組件【數據存儲篇】 本次分享課程包含以下乾貨知識點: 1、什麼是Protobuffer? 2、Protobuffer應用場景介紹 3、為什麼Protocol Buffer性能這麼好 ...
  • net framework卸載 重裝 https://download.microsoft.com/download/E/4/1/E4173890-A24A-4936-9FC9-AF930FE3FA40/NDP461-KB3102436-x86-x64-AllOS-ENU.exe ...
  • 簡介 我們用C#來開發客戶端程式的時候,總會不可避免的需要調用外部程式或者訪問網站,本篇博客介紹了三種調用外部應用的方法,供參考 實現 第一種是利用shell32.dll,實現ShellExecute方法,該方法可同時打開本地程式、文件夾或者訪問網站,只要直接輸入路徑字元串即可, 如C:\Users ...
  • 為什麼要使用 ASP.NET Core? NET Core 剛發佈的時候根據介紹就有點心裡癢癢,微軟的尿性都懂的,新東西bug太多,現在2.0也發佈很久了,決定研究一下。 ASP.NET Core官方文檔https://docs.microsoft.com/en-us/aspnet/core/get ...
  • 1.連接SQLServer,創建資料庫TestDB; 2.添加EF引用,點擊工具-NuGet包管理器-管理解決方案的NuGet程式包, 搜索EntityFramework包,點擊安裝; 3.在Web.config中添加節點 其中Data Source為伺服器名,Initial Catalog為剛纔在 ...
  • 當年面試一家公司,面試官問我:一個int類型的數組怎麼獲取裡面第二大的數字? 給了我一張紙和一支筆讓我寫一個方法,我想了想便寫了一個方法: 然後問我能不能優化一下你的代碼,我當然回答可以了,尷尬的就是我想了半天也想不出來,當時腦子一片空白........; 最後無奈的說:可以優化,但是我現在想不到! ...
  • 需求: 最近項目里遇到了個問題,對方沒有提供直接獲取數據源的api介面,而是通過郵件發數據的。這就需要接收郵件後解析郵件內容獲得數據。 分析: 想在代碼里實時獲取郵件,可以通過郵件的幾個協議來實現,常用的幾個協議有POP3協議,SMTP協議,IAMP協議。 1. pop3:(Post Office ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...