Enumerable.FirstOrDefault 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回序列中的第一个元素;如果未找到该元素,则返回默认值。
重载
FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource) |
返回序列中满足条件的第一个元素;如果未找到此类元素,则返回指定的默认值。 |
FirstOrDefault<TSource>(IEnumerable<TSource>, TSource) |
返回序列的第一个元素,如果序列不包含任何元素,则返回指定的默认值。 |
FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
返回序列中满足条件的第一个元素;如果未找到这样的元素,则返回默认值。 |
FirstOrDefault<TSource>(IEnumerable<TSource>) |
返回序列中的第一个元素;如果序列中不包含任何元素,则返回默认值。 |
FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource)
- Source:
- First.cs
- Source:
- First.cs
- Source:
- First.cs
返回序列中满足条件的第一个元素;如果未找到此类元素,则返回指定的默认值。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate, TSource defaultValue);
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate, TSource defaultValue);
static member FirstOrDefault : seq<'Source> * Func<'Source, bool> * 'Source -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean), defaultValue As TSource) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IEnumerable<TSource>
要从中返回元素的 IEnumerable<T>。
- defaultValue
- TSource
如果序列为空,则返回的默认值。
返回
defaultValue
如果 source
为空,或者没有元素通过 指定的 predicate
测试,则为 ;否则为 中 source
通过 指定的 predicate
测试的第一个元素。
例外
source
或 predicate
为 null
。
适用于
FirstOrDefault<TSource>(IEnumerable<TSource>, TSource)
- Source:
- First.cs
- Source:
- First.cs
- Source:
- First.cs
返回序列的第一个元素,如果序列不包含任何元素,则返回指定的默认值。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, TSource defaultValue);
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, TSource defaultValue);
static member FirstOrDefault : seq<'Source> * 'Source -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource), defaultValue As TSource) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IEnumerable<TSource>
要返回其第一个元素的 IEnumerable<T>。
- defaultValue
- TSource
如果序列为空,则返回的默认值。
返回
defaultValue
如果 source
为空,则为 ;否则为 中的 source
第一个元素。
例外
source
为 null
。
适用于
FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- Source:
- First.cs
- Source:
- First.cs
- Source:
- First.cs
返回序列中满足条件的第一个元素;如果未找到这样的元素,则返回默认值。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
public static TSource? FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member FirstOrDefault : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IEnumerable<TSource>
要从中返回元素的 IEnumerable<T>。
返回
如果 source
为空或没有元素通过 predicate
指定的测试,则为 default
(TSource
),否则为 source
中通过 predicate
指定的测试的第一个元素。
例外
source
或 predicate
为 null
。
示例
下面的代码示例演示如何通过传入谓词来使用 FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 。 在对 方法的第二次调用中,数组中没有满足条件的元素。
string[] names = { "Hartono, Tommy", "Adams, Terry",
"Andersen, Henriette Thaulow",
"Hedlund, Magnus", "Ito, Shu" };
string firstLongName = names.FirstOrDefault(name => name.Length > 20);
Console.WriteLine("The first long name is '{0}'.", firstLongName);
string firstVeryLongName = names.FirstOrDefault(name => name.Length > 30);
Console.WriteLine(
"There is {0} name longer than 30 characters.",
string.IsNullOrEmpty(firstVeryLongName) ? "not a" : "a");
/*
This code produces the following output:
The first long name is 'Andersen, Henriette Thaulow'.
There is not a name longer than 30 characters.
*/
' Create an array of strings.
Dim names() As String =
{"Hartono, Tommy", "Adams, Terry", "Andersen, Henriette Thaulow", "Hedlund, Magnus", "Ito, Shu"}
' Select the first string in the array whose length is greater than 20.
Dim firstLongName As String =
names.FirstOrDefault(Function(name) name.Length > 20)
' Display the output.
Console.WriteLine($"The first long name is {firstLongName}")
' Select the first string in the array whose length is greater than 30,
' or a default value if there are no such strings in the array.
Dim firstVeryLongName As String =
names.FirstOrDefault(Function(name) name.Length > 30)
Dim text As String = IIf(String.IsNullOrEmpty(firstVeryLongName), "not a", "a")
Console.WriteLine($"There is {text} name longer than 30 characters.")
' This code produces the following output:
'
' The first long name is Andersen, Henriette Thaulow
'
' There is not a name longer than 30 characters.
注解
引用和可为空类型的默认值为 null
。
适用于
FirstOrDefault<TSource>(IEnumerable<TSource>)
- Source:
- First.cs
- Source:
- First.cs
- Source:
- First.cs
返回序列中的第一个元素;如果序列中不包含任何元素,则返回默认值。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
public static TSource? FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member FirstOrDefault : seq<'Source> -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource)) As TSource
类型参数
- TSource
source
的元素类型。
参数
- source
- IEnumerable<TSource>
要返回其第一个元素的 IEnumerable<T>。
返回
如果 source
为空,则为 default
(TSource
);否则为 source
中的第一个元素。
例外
source
为 null
。
示例
下面的代码示例演示如何对空数组使用 FirstOrDefault<TSource>(IEnumerable<TSource>) 。
int[] numbers = { };
int first = numbers.FirstOrDefault();
Console.WriteLine(first);
/*
This code produces the following output:
0
*/
' Create an empty array.
Dim numbers() As Integer = {}
' Select the first element in the array, or a default value
' if there are not elements in the array.
Dim first As Integer = numbers.FirstOrDefault()
' Display the output.
Console.WriteLine(first)
' This code produces the following output:
'
' 0
有时,如果集合不包含任何元素,则 的值 default(TSource)
不是要使用的默认值。 可以使用 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 方法指定在集合为空时要使用的默认值,而不是检查不需要的默认值的结果,然后根据需要对其进行更改。 然后,调用 First<TSource>(IEnumerable<TSource>) 以获取第一个元素。 如果数值月份的集合为空,下面的代码示例使用这两种方法来获取默认值 1。 由于整数的默认值为 0,它不对应于任何月份,因此必须将默认值指定为 1。 执行完查询后,将检查第一个结果变量是否为不需要的默认值。 第二个结果变量通过使用 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 将默认值指定为 1 来获取。
List<int> months = new List<int> { };
// Setting the default value to 1 after the query.
int firstMonth1 = months.FirstOrDefault();
if (firstMonth1 == 0)
{
firstMonth1 = 1;
}
Console.WriteLine("The value of the firstMonth1 variable is {0}", firstMonth1);
// Setting the default value to 1 by using DefaultIfEmpty() in the query.
int firstMonth2 = months.DefaultIfEmpty(1).First();
Console.WriteLine("The value of the firstMonth2 variable is {0}", firstMonth2);
/*
This code produces the following output:
The value of the firstMonth1 variable is 1
The value of the firstMonth2 variable is 1
*/
Dim months As New List(Of Integer)(New Integer() {})
' Setting the default value to 1 after the query.
Dim firstMonth1 As Integer = months.FirstOrDefault()
If firstMonth1 = 0 Then
firstMonth1 = 1
End If
Console.WriteLine($"The value of the firstMonth1 variable is {firstMonth1}")
' Setting the default value to 1 by using DefaultIfEmpty() in the query.
Dim firstMonth2 As Integer = months.DefaultIfEmpty(1).First()
Console.WriteLine($"The value of the firstMonth2 variable is {firstMonth2}")
' This code produces the following output:
'
' The value of the firstMonth1 variable is 1
' The value of the firstMonth2 variable is 1
注解
引用和可为空类型的默认值为 null
。
方法 FirstOrDefault 不提供指定默认值的方法。 如果要指定 除 以外的 default(TSource)
默认值, DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 请使用 示例部分所述的 方法。