Enumerable.LastOrDefault 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
시퀀스의 마지막 요소를 반환하거나, 요소가 없으면 기본값을 반환합니다.
오버로드
LastOrDefault<TSource>(IEnumerable<TSource>, TSource) |
시퀀스의 마지막 요소를 반환하거나, 시퀀스에 요소가 없는 경우 지정된 기본값을 반환합니다. |
LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource) |
조건을 충족하는 시퀀스의 마지막 요소를 반환하거나, 이러한 요소가 없으면 지정된 기본값을 반환합니다. |
LastOrDefault<TSource>(IEnumerable<TSource>) |
시퀀스의 마지막 요소를 반환하거나, 시퀀스에 요소가 없으면 기본값을 반환합니다. |
LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
시퀀스에서 특정 조건에 맞는 마지막 요소를 반환하거나, 이러한 요소가 없으면 기본값을 반환합니다. |
LastOrDefault<TSource>(IEnumerable<TSource>, TSource)
시퀀스의 마지막 요소를 반환하거나, 시퀀스에 요소가 없는 경우 지정된 기본값을 반환합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource LastOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, TSource defaultValue);
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, TSource defaultValue);
static member LastOrDefault : seq<'Source> * 'Source -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IEnumerable(Of TSource), defaultValue As TSource) As TSource
형식 매개 변수
- TSource
source
요소의 형식입니다.
매개 변수
- source
- IEnumerable<TSource>
마지막 요소를 반환할 IEnumerable<T>입니다.
- defaultValue
- TSource
시퀀스가 비어 있는 경우 반환할 기본값입니다.
반환
- TSource
defaultValue
if the source sequence is empty; otherwise, the last element in the IEnumerable<T>.
예외
source
이(가) null
인 경우
적용 대상
LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource)
조건을 충족하는 시퀀스의 마지막 요소를 반환하거나, 이러한 요소가 없으면 지정된 기본값을 반환합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource LastOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate, TSource defaultValue);
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate, TSource defaultValue);
static member LastOrDefault : seq<'Source> * Func<'Source, bool> * 'Source -> 'Source
<Extension()>
Public Function LastOrDefault(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
시퀀스가 비어 있는 경우 반환할 기본값입니다.
반환
- TSource
defaultValue
시퀀스가 비어 있거나 조건자 함수에서 테스트를 통과하는 요소가 없는 경우 그렇지 않으면 조건자 함수에서 테스트를 통과하는 마지막 요소입니다.
예외
source
또는 predicate
가 null
인 경우
적용 대상
LastOrDefault<TSource>(IEnumerable<TSource>)
시퀀스의 마지막 요소를 반환하거나, 시퀀스에 요소가 없으면 기본값을 반환합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource LastOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
public static TSource? LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member LastOrDefault : seq<'Source> -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IEnumerable(Of TSource)) As TSource
형식 매개 변수
- TSource
source
요소의 형식입니다.
매개 변수
- source
- IEnumerable<TSource>
마지막 요소를 반환할 IEnumerable<T>입니다.
반환
- TSource
소스 시퀀스가 비어 있으면 default
(TSource
)이고, 그렇지 않으면 IEnumerable<T>의 마지막 요소입니다.
예외
source
이(가) null
인 경우
예제
다음 코드 예제에서는 빈 배열에서 사용 LastOrDefault<TSource>(IEnumerable<TSource>) 하는 방법을 보여 줍니다.
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>
*/
' Create an empty array.
Dim fruits() As String = {}
' Get the last item in the array, or a
' default value if there are no items.
Dim last As String = fruits.LastOrDefault()
' Display the result.
Console.WriteLine(IIf(String.IsNullOrEmpty(last),
"<string is Nothing or empty>",
last))
' This code produces the following output:
'
' <string is Nothing or empty>
경우에 따라 컬렉션 default(TSource)
에 요소가 없는 경우 사용하려는 기본값이 값이 아닌 경우가 있습니다. 원치 않는 기본값에 대한 결과를 확인한 다음 필요한 경우 변경하는 대신 이 메서드를 사용하여 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 컬렉션이 비어 있는 경우 사용할 기본값을 지정할 수 있습니다. 그런 다음 마지막 요소를 가져오기 위해 호출 Last<TSource>(IEnumerable<TSource>) 합니다. 다음 코드 예제에서는 두 기술을 모두 사용하여 월의 숫자 일 컬렉션이 비어 있는 경우 기본값 1을 가져옵니다. 정수의 기본값은 0이므로 해당 월의 날짜에 해당하지 않으므로 기본값은 대신 1로 지정해야 합니다. 쿼리 실행이 완료된 후 첫 번째 결과 변수가 원치 않는 기본값을 확인합니다. 두 번째 결과 변수는 기본값 1을 지정하는 데 사용하여 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 가져옵니다.
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
*/
Dim daysOfMonth As New List(Of Integer)(New Integer() {})
' Setting the default value to 1 after the query.
Dim lastDay1 As Integer = daysOfMonth.LastOrDefault()
If lastDay1 = 0 Then
lastDay1 = 1
End If
Console.WriteLine($"The value of the lastDay1 variable is {lastDay1}")
' Setting the default value to 1 by using DefaultIfEmpty() in the query.
Dim lastDay2 As Integer = daysOfMonth.DefaultIfEmpty(1).Last()
Console.WriteLine($"The value of the lastDay2 variable is {lastDay2}")
' This code produces the following output:
'
' The value of the lastDay1 variable is 1
' The value of the lastDay2 variable is 1
설명
참조 및 nullable 형식의 기본값은 .입니다 null
.
이 메서드는 LastOrDefault 기본값을 지정하는 방법을 제공하지 않습니다. 이외의 기본값 default(TSource)
을 지정하려면 예제 섹션에 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 설명된 대로 메서드를 사용합니다.
적용 대상
LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
시퀀스에서 특정 조건에 맞는 마지막 요소를 반환하거나, 이러한 요소가 없으면 기본값을 반환합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource LastOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
public static TSource? LastOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member LastOrDefault : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
형식 매개 변수
- TSource
source
요소의 형식입니다.
매개 변수
- source
- IEnumerable<TSource>
요소를 반환할 IEnumerable<T>입니다.
반환
- TSource
시퀀스가 비어 있거나 조건자 함수의 테스트를 통과하는 요소가 없으면 default
(TSource
)이고, 그렇지 않으면 조건자 함수의 테스트를 통과하는 마지막 요소입니다.
예외
source
또는 predicate
가 null
인 경우
예제
다음 코드 예제에서는 조건자를 전달하여 사용하는 LastOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 방법을 보여 줍니다. 메서드에 대한 두 번째 호출에서는 시퀀스에 조건을 충족하는 요소가 없습니다.
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>.
*/
' Create an array of doubles.
Dim numbers() As Double = {49.6, 52.3, 51.0, 49.4, 50.2, 48.3}
' Get the last item whose value rounds to 50.0.
Dim number50 As Double =
numbers.LastOrDefault(Function(n) Math.Round(n) = 50.0)
Dim output As New System.Text.StringBuilder
output.AppendLine("The last number that rounds to 50 is " & number50)
' Get the last item whose value rounds to 40.0.
Dim number40 As Double =
numbers.LastOrDefault(Function(n) Math.Round(n) = 40.0)
Dim text As String = IIf(number40 = 0.0,
"[DOES NOT EXIST]",
number40.ToString())
output.AppendLine("The last number that rounds to 40 is " & text)
' Display the output.
Console.WriteLine(output.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]
설명
참조 및 nullable 형식의 기본값은 .입니다 null
.