Enumerable.Last 方法

定义

返回序列的最后一个元素。

重载

名称 说明
Last<TSource>(IEnumerable<TSource>)

返回序列的最后一个元素。

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

返回满足指定条件的序列的最后一个元素。

Last<TSource>(IEnumerable<TSource>)

Source:
Last.cs
Source:
Last.cs
Source:
Last.cs
Source:
Last.cs
Source:
Last.cs

返回序列的最后一个元素。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource Last(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource Last<TSource>(this System.Collections.Generic.IEnumerable<TSource> source);
static member Last : seq<'Source> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As IEnumerable(Of TSource)) As TSource

类型参数

TSource

的元素 source的类型。

参数

source
IEnumerable<TSource>

一个返回 /> 的最后一个元素。

返回

TSource

源序列中最后一个位置的值。

例外

sourcenull

源序列为空。

示例

下面的代码示例演示如何用于 Last<TSource>(IEnumerable<TSource>) 返回数组的最后一个元素。

int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
                    83, 23, 87, 67, 12, 19 };

int last = numbers.Last();

Console.WriteLine(last);

/*
 This code produces the following output:

 19
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 67, 12, 19}

' Get the last item in the array.
Dim last As Integer = numbers.Last()

' Display the result.
Console.WriteLine(last)

' This code produces the following output:
'
' 19

注解

如果Last<TSource>(IEnumerable<TSource>)不包含任何元素,该方法source将引发异常。 若要在源序列为空时返回默认值,请使用 LastOrDefault 该方法。

适用于

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

Source:
Last.cs
Source:
Last.cs
Source:
Last.cs
Source:
Last.cs
Source:
Last.cs

返回满足指定条件的序列的最后一个元素。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource Last(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource Last<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member Last : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function Last(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource

类型参数

TSource

的元素 source的类型。

参数

source
IEnumerable<TSource>

要从中返回元素的一 IEnumerable<T> 个。

predicate
Func<TSource,Boolean>

用于测试条件的每个元素的函数。

返回

TSource

序列中通过指定谓词函数中的测试的最后一个元素。

例外

sourcepredicatenull.

没有元素满足条件。predicate

-或-

源序列为空。

示例

下面的代码示例演示如何用于 Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 返回满足条件的数组的最后一个元素。

int[] numbers = { 9, 34, 65, 92, 87, 435, 3, 54,
                    83, 23, 87, 67, 12, 19 };

int last = numbers.Last(num => num > 80);

Console.WriteLine(last);

/*
 This code produces the following output:

 87
*/
' Create an array of integers.
Dim numbers() As Integer =
{9, 34, 65, 92, 87, 435, 3, 54, 83, 23, 87, 67, 12, 19}

' Get the last element in the array whose value is
' greater than 80.
Dim last As Integer = numbers.Last(Function(num) num > 80)

' Display the result.
Console.WriteLine(last)

' This code produces the following output:
'
' 87

注解

如果在 中Last<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)找不到匹配的元素,该方法source将引发异常。 若要在找不到匹配元素时返回默认值,请使用 LastOrDefault 该方法。

适用于