Enumerable.SkipWhile 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
只要指定的條件為 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,便略過序列中的項目,然後傳回其餘項目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<TSource> SkipWhile<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member SkipWhile : seq<'Source> * Func<'Source, bool> -> seq<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As IEnumerable(Of TSource)
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
傳回項目的 IEnumerable<T>。
傳回
IEnumerable<T>,其中包含的項目位於輸入序列中,而且是從沒有通過 predicate
所指定測試之線性系列中的第一個項目開始。
例外狀況
source
或 predicate
為 null
。
範例
下列程式代碼範例示範如何使用 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 來略過陣列的專案,只要條件為 true。
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
*/
' Create an array of integers that represent grades.
Dim grades() As Integer = {59, 82, 70, 56, 92, 98, 85}
' Sort the grades in descending order and
' get all grades greater less than 80.
Dim lowerGrades As IEnumerable(Of Integer) =
grades _
.OrderByDescending(Function(grade) grade) _
.SkipWhile(Function(grade) grade >= 80)
' Display the results.
Dim output As New System.Text.StringBuilder("All grades below 80:" & vbCrLf)
For Each grade As Integer In lowerGrades
output.AppendLine(grade)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' All grades below 80:
' 70
' 59
' 56
備註
方法是 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator
方法或在 C# 或 foreach
For Each
Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。
這個方法會使用 predicate
來測試 的每個專案source
,如果結果為 true
,則會略過 專案。 在述詞函式傳回 false
元素之後,該元素和 中的 source
其餘專案就會產生,而且不會再叫用 predicate
。
勾 predicate
選序列 true
中所有元素的 ,則會傳回空 IEnumerable<T> 的 。
TakeWhile和 SkipWhile 方法是功能補充。 給定集合序列 coll
和純函 p
式 ,串連和的結果 coll.TakeWhile(p)
會產生 coll.SkipWhile(p)
與 相同的序列 coll
。
在 Visual Basic 查詢表達式語法中, Skip While
子句會轉譯為的 SkipWhile調用。
另請參閱
適用於
SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)
- 來源:
- Skip.cs
- 來源:
- Skip.cs
- 來源:
- Skip.cs
只要指定的條件為 true,便略過序列中的項目,然後傳回其餘項目。 項目的索引是用於述詞功能的邏輯中。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, int, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<TSource> SkipWhile<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int,bool> predicate);
static member SkipWhile : seq<'Source> * Func<'Source, int, bool> -> seq<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Integer, Boolean)) As IEnumerable(Of TSource)
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
傳回項目的 IEnumerable<T>。
傳回
IEnumerable<T>,其中包含的項目位於輸入序列中,而且是從沒有通過 predicate
所指定測試之線性系列中的第一個項目開始。
例外狀況
source
或 predicate
為 null
。
範例
下列程式代碼範例示範如何使用 SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) 來略過陣列的專案,只要相依於元素索引的條件為 true。
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
*/
' Create an array of integers.
Dim amounts() As Integer =
{5000, 2500, 9000, 8000, 6500, 4000, 1500, 5500}
' Skip items in the array whose value is greater than
' the item's index times 1000; get the remaining items.
Dim query As IEnumerable(Of Integer) =
amounts.SkipWhile(Function(amount, index) _
amount > index * 1000)
' Output the results.
Dim output As New System.Text.StringBuilder
For Each amount As Integer In query
output.AppendLine(amount)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' 4000
' 1500
' 5500
備註
這個方法是使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator
方法或在 C# 或 foreach
For Each
Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。
方法會SkipWhile<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)使用 predicate
來測試 的每個元素source
,如果結果為 true
,則會略過 專案。 在述詞函式傳回 false
元素之後,該元素和 中的 source
其餘專案就會產生,而且不會再叫用 predicate
。
勾 predicate
選序列 true
中所有元素的 ,則會傳回空 IEnumerable<T> 的 。
的第一個自變數 predicate
代表要測試的專案。 第二個自變數代表 內 source
專案之以零起始的索引。
TakeWhile和 SkipWhile 方法是功能補充。 給定集合序列 coll
和純函 p
式 ,串連和的結果 coll.TakeWhile(p)
會產生 coll.SkipWhile(p)
與 相同的序列 coll
。
在 Visual Basic 查詢表達式語法中, Skip While
子句會轉譯為的 SkipWhile調用。