Enumerable.SkipWhile 方法

定義

只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。

多載

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

只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。

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

只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。 項目的索引是用於述詞功能的邏輯中。

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

來源:
Skip.cs
來源:
Skip.cs
來源:
Skip.cs

只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。

C#
public static System.Collections.Generic.IEnumerable<TSource> SkipWhile<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

predicate
Func<TSource,Boolean>

用來測試每個項目是否符合條件的函式。

傳回

IEnumerable<TSource>

IEnumerable<T>,其中包含的項目位於輸入序列中,而且是從沒有通過 predicate 所指定測試之線性系列中的第一個項目開始。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何使用 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 來略過陣列的專案,只要條件為 true。

C#
int[] grades = { 59, 82, 70, 56, 92, 98, 85 };

IEnumerable<int> lowerGrades =
    grades
    .OrderByDescending(grade => grade)
    .SkipWhile(grade => grade >= 80);

Console.WriteLine("All grades below 80:");
foreach (int grade in lowerGrades)
{
    Console.WriteLine(grade);
}

/*
 This code produces the following output:

 All grades below 80:
 70
 59
 56
*/

備註

方法是 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator 方法或在 C# 或 foreachFor Each Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。

這個方法會使用 predicate 來測試 的每個專案source,如果結果為 true,則會略過 專案。 在述詞函式傳回 false 元素之後,該元素和 中的 source 其餘專案就會產生,而且不會再叫用 predicate

predicate 選序列 true 中所有元素的 ,則會傳回空 IEnumerable<T> 的 。

TakeWhileSkipWhile 方法是功能補充。 給定集合序列 coll 和純函 p式 ,串連和的結果 coll.TakeWhile(p) 會產生 coll.SkipWhile(p) 與 相同的序列 coll

在 Visual Basic 查詢表達式語法中, Skip While 子句會轉譯為的 SkipWhile調用。

另請參閱

適用於

.NET 9 及其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

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

來源:
Skip.cs
來源:
Skip.cs
來源:
Skip.cs

只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。 項目的索引是用於述詞功能的邏輯中。

C#
public static System.Collections.Generic.IEnumerable<TSource> SkipWhile<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int,bool> predicate);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

predicate
Func<TSource,Int32,Boolean>

用來測試各來源項目是否符合條件的函式;此函式的第二個參數代表來源項目的索引。

傳回

IEnumerable<TSource>

IEnumerable<T>,其中包含的項目位於輸入序列中,而且是從沒有通過 predicate 所指定測試之線性系列中的第一個項目開始。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何使用 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) 來略過陣列的專案,只要相依於元素索引的條件為 true。

C#
int[] amounts = { 5000, 2500, 9000, 8000,
                    6500, 4000, 1500, 5500 };

IEnumerable<int> query =
    amounts.SkipWhile((amount, index) => amount > index * 1000);

foreach (int amount in query)
{
    Console.WriteLine(amount);
}

/*
 This code produces the following output:

 4000
 1500
 5500
*/

備註

這個方法是使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator 方法或在 C# 或 foreachFor Each Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。

方法會SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)使用 predicate 來測試 的每個元素source,如果結果為 true,則會略過 專案。 在述詞函式傳回 false 元素之後,該元素和 中的 source 其餘專案就會產生,而且不會再叫用 predicate

predicate 選序列 true 中所有元素的 ,則會傳回空 IEnumerable<T> 的 。

的第一個自變數 predicate 代表要測試的專案。 第二個自變數代表 內 source專案之以零起始的索引。

TakeWhileSkipWhile 方法是功能補充。 給定集合序列 coll 和純函 p式 ,串連和的結果 coll.TakeWhile(p) 會產生 coll.SkipWhile(p) 與 相同的序列 coll

在 Visual Basic 查詢表達式語法中, Skip While 子句會轉譯為的 SkipWhile調用。

另請參閱

適用於

.NET 9 及其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0