Enumerable.LastOrDefault 方法

定義

傳回序列的最後一個項目;如果找不到任何項目,則傳回預設值。

多載

LastOrDefault<TSource>(IEnumerable<TSource>)

傳回序列的最後一個元素;如果序列中沒有包含任何元素,則傳回預設值。

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

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

LastOrDefault<TSource>(IEnumerable<TSource>, TSource)

傳回序列的最後一個專案,如果序列不包含任何元素,則傳回指定的預設值。

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

傳回符合條件之序列的最後一個專案,如果找不到這類專案,則傳回指定的預設值。

LastOrDefault<TSource>(IEnumerable<TSource>)

來源:
Last.cs
來源:
Last.cs
來源:
Last.cs

傳回序列的最後一個元素;如果序列中沒有包含任何元素,則傳回預設值。

C#
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
C#
public static TSource? LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

要傳回最後一個項目的 IEnumerable<T>

傳回

TSource

如果來源序列是空的,則為 default(TSource),否則為 IEnumerable<T> 中的最後一個項目。

例外狀況

sourcenull

範例

下列程式代碼範例示範如何在 LastOrDefault<TSource>(IEnumerable<TSource>) 空數位上使用。

C#
string[] fruits = { };
string last = fruits.LastOrDefault();
Console.WriteLine(
    String.IsNullOrEmpty(last) ? "<string is null or empty>" : last);

/*
 This code produces the following output:

 <string is null or empty>
*/

有時候,如果集合不包含任何元素,則的值 default(TSource) 不是您想要使用的預設值。 您可以改用 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 方法指定您想要使用之預設值的預設值,而不是檢查不需要的預設值,然後視需要變更它。 然後,呼叫 Last<TSource>(IEnumerable<TSource>) 以取得最後一個專案。 如果月份的數值天數集合是空的,下列程式代碼範例會使用這兩種技術來取得預設值 1。 因為整數的預設值是 0,這不會對應到月份的任何一天,所以預設值必須改為指定為 1。 查詢完成執行之後,會檢查第一個結果變數是否有不必要的預設值。 第二個結果變數是使用 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 來指定預設值 1 來取得。

C#
List<int> daysOfMonth = new List<int> { };

// Setting the default value to 1 after the query.
int lastDay1 = daysOfMonth.LastOrDefault();
if (lastDay1 == 0)
{
    lastDay1 = 1;
}
Console.WriteLine("The value of the lastDay1 variable is {0}", lastDay1);

// Setting the default value to 1 by using DefaultIfEmpty() in the query.
int lastDay2 = daysOfMonth.DefaultIfEmpty(1).Last();
Console.WriteLine("The value of the lastDay2 variable is {0}", lastDay2);

/*
 This code produces the following output:

 The value of the lastDay1 variable is 1
 The value of the lastDay2 variable is 1
*/

備註

參考與可為 Null 型別預設值為 null

方法 LastOrDefault 不提供指定預設值的方法。 如果您想要指定 以外的 default(TSource)預設值,請使用 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 範例 一節中所述的方法。

適用於

.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

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

來源:
Last.cs
來源:
Last.cs
來源:
Last.cs

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

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

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

predicate
Func<TSource,Boolean>

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

傳回

TSource

如果序列是空的,或是沒有任何項目通過述詞函式中的測試,則為 default(TSource),否則為通過述詞函式之測試的最後一個項目。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何藉由傳入述詞來使用 LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 。 在方法的第二次呼叫中,序列中沒有符合條件的專案。

C#
double[] numbers = { 49.6, 52.3, 51.0, 49.4, 50.2, 48.3 };

double last50 = numbers.LastOrDefault(n => Math.Round(n) == 50.0);

Console.WriteLine("The last number that rounds to 50 is {0}.", last50);

double last40 = numbers.LastOrDefault(n => Math.Round(n) == 40.0);

Console.WriteLine(
    "The last number that rounds to 40 is {0}.",
    last40 == 0.0 ? "<DOES NOT EXIST>" : last40.ToString());

/*
 This code produces the following output:

 The last number that rounds to 50 is 50.2.
 The last number that rounds to 40 is <DOES NOT EXIST>.
*/

備註

參考與可為 Null 型別預設值為 null

適用於

.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

LastOrDefault<TSource>(IEnumerable<TSource>, TSource)

來源:
Last.cs
來源:
Last.cs
來源:
Last.cs

傳回序列的最後一個專案,如果序列不包含任何元素,則傳回指定的預設值。

C#
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, TSource defaultValue);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

要傳回最後一個項目的 IEnumerable<T>

defaultValue
TSource

如果序列是空的,則傳回的預設值。

傳回

TSource

defaultValue 如果來源序列是空的,則為 ;否則,中的 IEnumerable<T>最後一個專案。

例外狀況

sourcenull

適用於

.NET 9 及其他版本
產品 版本
.NET 6, 7, 8, 9

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

來源:
Last.cs
來源:
Last.cs
來源:
Last.cs

傳回符合條件之序列的最後一個專案,如果找不到這類專案,則傳回指定的預設值。

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

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

predicate
Func<TSource,Boolean>

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

defaultValue
TSource

如果序列是空的,則傳回的預設值。

傳回

TSource

defaultValue 如果序列是空的,或如果沒有元素通過述詞函式中的測試,則為 ;否則,在述詞函式中通過測試的最後一個專案。

例外狀況

sourcepredicatenull

適用於

.NET 9 及其他版本
產品 版本
.NET 6, 7, 8, 9