Enumerable.Take 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Take<TSource>(IEnumerable<TSource>, Int32) |
從序列開頭傳回指定的連續項目數目。 |
Take<TSource>(IEnumerable<TSource>, Range) |
傳回序列中連續專案的指定範圍。 |
Take<TSource>(IEnumerable<TSource>, Int32)
- 來源:
- Take.cs
- 來源:
- Take.cs
- 來源:
- Take.cs
從序列開頭傳回指定的連續項目數目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ Take(System::Collections::Generic::IEnumerable<TSource> ^ source, int count);
public static System.Collections.Generic.IEnumerable<TSource> Take<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int count);
static member Take : seq<'Source> * int -> seq<'Source>
<Extension()>
Public Function Take(Of TSource) (source As IEnumerable(Of TSource), count As Integer) As IEnumerable(Of TSource)
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
傳回項目的序列。
- count
- Int32
要傳回的項目數目。
傳回
IEnumerable<T>,其中包含輸入序列開頭處指定的項目數目。
例外狀況
source
為 null
。
範例
下列程式代碼範例示範如何使用 Take 從序列開頭傳回專案。
int[] grades = { 59, 82, 70, 56, 92, 98, 85 };
IEnumerable<int> topThreeGrades =
grades.OrderByDescending(grade => grade).Take(3);
Console.WriteLine("The top three grades are:");
foreach (int grade in topThreeGrades)
{
Console.WriteLine(grade);
}
/*
This code produces the following output:
The top three grades are:
98
92
85
*/
' Create an array of Integer values that represent grades.
Dim grades() As Integer = {59, 82, 70, 56, 92, 98, 85}
' Get the highest three grades by first sorting
' them in descending order and then taking the
' first three values.
Dim topThreeGrades As IEnumerable(Of Integer) =
grades _
.OrderByDescending(Function(grade) grade) _
.Take(3)
' Display the results.
Dim output As New System.Text.StringBuilder("The top three grades are:" & vbCrLf)
For Each grade As Integer In topThreeGrades
output.AppendLine(grade)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' The top three grades are:
' 98
' 92
' 85
備註
此方法是使用延後執行來實作。 立即傳回值是物件,可儲存執行動作所需的所有資訊。 除非直接在 GetEnumerator
C# 或 Visual Basic 中使用 foreach
來列舉對象,否則 For Each
不會執行這個方法所表示的查詢。
Takesource
列舉併產生專案,直到count
產生專案或source
不包含更多項目為止。 如果 count
超過中的 source
項目數目,則會傳回 的所有 元素 source
。
如果 count
小於或等於零, source
則不會列舉,而且會傳回空 IEnumerable<T> 的 。
Take和 Skip 方法是功能性補碼。 給定集合序列coll
和整數n
,串連 和 coll.Skip(n)
的結果coll.Take(n)
會產生與 coll
相同的序列。
在 Visual Basic 查詢表達式語法中 Take
,子句會轉譯為的 Take調用。
另請參閱
適用於
Take<TSource>(IEnumerable<TSource>, Range)
- 來源:
- Take.cs
- 來源:
- Take.cs
- 來源:
- Take.cs
傳回序列中連續專案的指定範圍。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ Take(System::Collections::Generic::IEnumerable<TSource> ^ source, Range range);
public static System.Collections.Generic.IEnumerable<TSource> Take<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Range range);
static member Take : seq<'Source> * Range -> seq<'Source>
<Extension()>
Public Function Take(Of TSource) (source As IEnumerable(Of TSource), range As Range) As IEnumerable(Of TSource)
類型參數
- TSource
source
項目的類型。
參數
- source
- IEnumerable<TSource>
傳回項目的序列。
- range
- Range
要傳回的專案範圍,其具有序列開頭或結尾的開始和結束索引。
傳回
IEnumerable<T>,包含序列中source
指定之項目範圍。
例外狀況
source
為 null
。
備註
此方法是使用延後執行來實作。 立即傳回值是物件,可儲存執行動作所需的所有資訊。 除非直接在 GetEnumerator
C# 或 Visual Basic 中使用 foreach
來列舉對象,否則 For Each
不會執行這個方法所表示的查詢。
Takesource
列舉併產生索引屬於指定 range
之的專案。