Enumerable.Max メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
値のシーケンスの最大値を返します。
オーバーロード
Max(IEnumerable<Nullable<Int32>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
null 許容の Int32 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Max(System::Collections::Generic::IEnumerable<Nullable<int>> ^ source);
public static int? Max (this System.Collections.Generic.IEnumerable<int?> source);
static member Max : seq<Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Max (source As IEnumerable(Of Nullable(Of Integer))) As Nullable(Of Integer)
パラメーター
- source
- IEnumerable<Nullable<Int32>>
最大値を確認する対象となる null 許容の Int32 値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Int32)
Visual Basic の 型Nullable<Int32>
の値。
例外
source
は null
です。
注釈
メソッドではMax(IEnumerable<Nullable<Int32>>)、 の実装IComparable<T>をInt32使用して値を比較します。
ソース シーケンスが空であるか、 の値のみが含まれている場合、この関数は null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Single>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
Single 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static float Max(System::Collections::Generic::IEnumerable<float> ^ source);
public static float Max (this System.Collections.Generic.IEnumerable<float> source);
static member Max : seq<single> -> single
<Extension()>
Public Function Max (source As IEnumerable(Of Single)) As Single
パラメーター
- source
- IEnumerable<Single>
最大値を確認する対象となる Single 値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
に要素が含まれていません。
注釈
メソッドではMax(IEnumerable<Single>)、 の実装IComparable<T>をSingle使用して値を比較します。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Nullable<Single>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
null 許容の Single 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Max(System::Collections::Generic::IEnumerable<Nullable<float>> ^ source);
public static float? Max (this System.Collections.Generic.IEnumerable<float?> source);
static member Max : seq<Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Max (source As IEnumerable(Of Nullable(Of Single))) As Nullable(Of Single)
パラメーター
- source
- IEnumerable<Nullable<Single>>
最大値を確認する対象となる null 許容の Single 値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Single)
Visual Basic の 型Nullable<Single>
の値。
例外
source
は null
です。
注釈
メソッドではMax(IEnumerable<Nullable<Single>>)、 の実装IComparable<T>をSingle使用して値を比較します。
ソース シーケンスが空であるか、 の値のみが含まれている場合、この関数は null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Nullable<Int64>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
null 許容の Int64 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Max(System::Collections::Generic::IEnumerable<Nullable<long>> ^ source);
public static long? Max (this System.Collections.Generic.IEnumerable<long?> source);
static member Max : seq<Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Max (source As IEnumerable(Of Nullable(Of Long))) As Nullable(Of Long)
パラメーター
- source
- IEnumerable<Nullable<Int64>>
最大値を確認する対象となる null 許容の Int64 値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Int64)
Visual Basic の 型Nullable<Int64>
の値。
例外
source
は null
です。
注釈
メソッドではMax(IEnumerable<Nullable<Int64>>)、 の実装IComparable<T>をInt64使用して値を比較します。
ソース シーケンスが空であるか、 の値のみが含まれている場合、この関数は null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Nullable<Double>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
null 許容の Double 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Max(System::Collections::Generic::IEnumerable<Nullable<double>> ^ source);
public static double? Max (this System.Collections.Generic.IEnumerable<double?> source);
static member Max : seq<Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Max (source As IEnumerable(Of Nullable(Of Double))) As Nullable(Of Double)
パラメーター
- source
- IEnumerable<Nullable<Double>>
最大値を確認する対象となる null 許容の Double 値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Double)
Visual Basic の 型Nullable<Double>
の値。
例外
source
が null
です。
例
次のコード例は、 を使用 Max(IEnumerable<Nullable<Double>>) してシーケンス内の最大値を決定する方法を示しています。
double?[] doubles = { null, 1.5E+104, 9E+103, -2E+103 };
double? max = doubles.Max();
Console.WriteLine("The largest number is {0}.", max);
/*
This code produces the following output:
The largest number is 1.5E+104.
*/
' Create an array of Nullable Double values.
Dim doubles() As Nullable(Of Double) =
{Nothing, 1.5E+104, 9.0E+103, -2.0E+103}
' Determine the maximum value in the array.
Dim max As Nullable(Of Double) = doubles.Max()
' Display the result.
Console.WriteLine($"The largest number is {max}")
' This code produces the following output:
'
' The largest number is 1.5E+104
注釈
メソッドではMax(IEnumerable<Nullable<Double>>)、 の実装IComparable<T>をDouble使用して値を比較します。
ソース シーケンスが空であるか、 の値のみが含まれている場合、この関数は null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Double>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
Double 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static double Max(System::Collections::Generic::IEnumerable<double> ^ source);
public static double Max (this System.Collections.Generic.IEnumerable<double> source);
static member Max : seq<double> -> double
<Extension()>
Public Function Max (source As IEnumerable(Of Double)) As Double
パラメーター
- source
- IEnumerable<Double>
最大値を確認する対象となる Double 値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
に要素が含まれていません。
注釈
メソッドではMax(IEnumerable<Double>)、 の実装IComparable<T>をDouble使用して値を比較します。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Int64>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
Int64 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static long Max(System::Collections::Generic::IEnumerable<long> ^ source);
public static long Max (this System.Collections.Generic.IEnumerable<long> source);
static member Max : seq<int64> -> int64
<Extension()>
Public Function Max (source As IEnumerable(Of Long)) As Long
パラメーター
- source
- IEnumerable<Int64>
最大値を確認する対象となる Int64 値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
に要素が含まれていません。
例
次のコード例は、 を使用 Max(IEnumerable<Int64>) してシーケンス内の最大値を決定する方法を示しています。
List<long> longs = new List<long> { 4294967296L, 466855135L, 81125L };
long max = longs.Max();
Console.WriteLine("The largest number is {0}.", max);
/*
This code produces the following output:
The largest number is 4294967296.
*/
' Create a list of Long values.
Dim longs As New List(Of Long)(New Long() _
{4294967296L, 466855135L, 81125L})
' Get the maximum value in the list.
Dim max As Long = longs.Max()
' Display the result.
Console.WriteLine($"The largest number is {max}")
' This code produces the following output:
'
' The largest number is 4294967296
注釈
メソッドではMax(IEnumerable<Int64>)、 の実装IComparable<T>をInt64使用して値を比較します。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Int32>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
Int32 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static int Max(System::Collections::Generic::IEnumerable<int> ^ source);
public static int Max (this System.Collections.Generic.IEnumerable<int> source);
static member Max : seq<int> -> int
<Extension()>
Public Function Max (source As IEnumerable(Of Integer)) As Integer
パラメーター
- source
- IEnumerable<Int32>
最大値を確認する対象となる Int32 値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
に要素が含まれていません。
注釈
メソッドではMax(IEnumerable<Int32>)、 の実装IComparable<T>をInt32使用して値を比較します。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Decimal>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
Decimal 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static System::Decimal Max(System::Collections::Generic::IEnumerable<System::Decimal> ^ source);
public static decimal Max (this System.Collections.Generic.IEnumerable<decimal> source);
static member Max : seq<decimal> -> decimal
<Extension()>
Public Function Max (source As IEnumerable(Of Decimal)) As Decimal
パラメーター
- source
- IEnumerable<Decimal>
最大値を確認する対象となる Decimal 値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
に要素が含まれていません。
注釈
メソッドではMax(IEnumerable<Decimal>)、 の実装IComparable<T>をDecimal使用して値を比較します。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max(IEnumerable<Nullable<Decimal>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
null 許容の Decimal 値のシーケンスの最大値を返します。
public:
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Max(System::Collections::Generic::IEnumerable<Nullable<System::Decimal>> ^ source);
public static decimal? Max (this System.Collections.Generic.IEnumerable<decimal?> source);
static member Max : seq<Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Max (source As IEnumerable(Of Nullable(Of Decimal))) As Nullable(Of Decimal)
パラメーター
- source
- IEnumerable<Nullable<Decimal>>
最大値を確認する対象となる null 許容の Decimal 値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Decimal)
Visual Basic の type Nullable<Decimal>
の値。
例外
source
は null
です。
注釈
メソッドではMax(IEnumerable<Nullable<Decimal>>)、 の実装IComparable<T>をDecimal使用して値を比較します。
ソース シーケンスが空であるか、 の値のみが含まれている場合、この関数は null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource,TResult>(IEnumerable<TSource>, Func<TSource,TResult>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
ジェネリック シーケンスの各要素に対して変換関数を呼び出し、結果の最大値を返します。
public:
generic <typename TSource, typename TResult>
[System::Runtime::CompilerServices::Extension]
static TResult Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TResult> ^ selector);
public static TResult Max<TSource,TResult> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TResult> selector);
public static TResult? Max<TSource,TResult> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TResult> selector);
static member Max : seq<'Source> * Func<'Source, 'Result> -> 'Result
<Extension()>
Public Function Max(Of TSource, TResult) (source As IEnumerable(Of TSource), selector As Func(Of TSource, TResult)) As TResult
型パラメーター
- TSource
source
の要素の型。
- TResult
selector
によって返される値の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
- selector
- Func<TSource,TResult>
各要素に適用する変換関数。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の予測値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この記事で説明するオーバーロードに例を拡張するには、 関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
型 TResult
が を実装する場合、 IComparable<T>このメソッドはその実装を使用して値を比較します。 それ以外の場合、型 TResult
が を実装する IComparable場合、その実装は値の比較に使用されます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Single>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、Single の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static float Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, float> ^ selector);
public static float Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,float> selector);
static member Max : seq<'Source> * Func<'Source, single> -> single
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Single)) As Single
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
source
に要素が含まれていません。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の予測値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この記事で説明するオーバーロードに例を拡張するには、 関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Single>)、 の実装IComparable<T>をSingle使用して値を比較します。
このメソッドは、 のメンバーを数値型 (具体的には Single) に投影する 関数 selector
を提供する場合に、任意のsource
値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、null 許容の Single の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<float> Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<float>> ^ selector);
public static float? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,float?> selector);
static member Max : seq<'Source> * Func<'Source, Nullable<single>> -> Nullable<single>
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Single))) As Nullable(Of Single)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンス内の最大値に対応する値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の予測値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この記事で説明するオーバーロードに例を拡張するには、 関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Single>>)、 の実装IComparable<T>をSingle使用して値を比較します。
このメソッドは、 selector
のメンバー source
を数値型 (特 Nullable<Single>
に C# または Nullable(Of Single)
Visual Basic) に投影する関数 を提供する場合に、任意の値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、null 許容の Int64 の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<long> Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<long>> ^ selector);
public static long? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,long?> selector);
static member Max : seq<'Source> * Func<'Source, Nullable<int64>> -> Nullable<int64>
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Long))) As Nullable(Of Long)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンス内の最大値に対応する値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の予測値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この記事で説明するオーバーロードに例を拡張するには、 関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int64>>)、 の実装IComparable<T>をInt64使用して値を比較します。
このメソッドは、 selector
のメンバー source
を数値型 (特 Nullable<Int64>
に C# または Nullable(Of Int64)
Visual Basic) に投影する関数 を提供する場合に、任意の値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、null 許容の Int32 の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<int> Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<int>> ^ selector);
public static int? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int?> selector);
static member Max : seq<'Source> * Func<'Source, Nullable<int>> -> Nullable<int>
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Integer))) As Nullable(Of Integer)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Int32)
Visual Basic の型Nullable<Int32>
の値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の予測値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この記事で説明するオーバーロードに例を拡張するには、 関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Int32>>)、 の実装IComparable<T>をInt32使用して値を比較します。
このメソッドは、 selector
のメンバー source
を数値型 (特 Nullable<Int32>
に C# または Nullable(Of Int32)
Visual Basic) に投影する関数 を提供する場合に、任意の値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、null 許容の Decimal の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<System::Decimal> Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<System::Decimal>> ^ selector);
public static decimal? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,decimal?> selector);
static member Max : seq<'Source> * Func<'Source, Nullable<decimal>> -> Nullable<decimal>
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Decimal))) As Nullable(Of Decimal)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Decimal)
Visual Basic の 型Nullable<Decimal>
の値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この例をこの記事で説明するオーバーロードに拡張するには、関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Decimal>>)、 の実装IComparable<T>をDecimal使用して値を比較します。
のメンバーsource
を数値型 (具体的には Nullable<Decimal>
C# または Nullable(Of Decimal)
Visual Basic) に投影する関数 selector
を指定する場合は、このメソッドを任意の値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、null 許容の Double の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static Nullable<double> Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, Nullable<double>> ^ selector);
public static double? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,double?> selector);
static member Max : seq<'Source> * Func<'Source, Nullable<double>> -> Nullable<double>
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Nullable(Of Double))) As Nullable(Of Double)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値に対応する C# または Nullable(Of Double)
Visual Basic の 型Nullable<Double>
の値。
例外
source
または selector
が null
です。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この例をこの記事で説明するオーバーロードに拡張するには、関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Nullable<Double>>)、 の実装IComparable<T>をDouble使用して値を比較します。
のメンバーsource
を数値型 (具体的には Nullable<Double>
C# または Nullable(Of Double)
Visual Basic) に投影する関数 selector
を指定する場合は、このメソッドを任意の値のシーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、Int32 の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, int> ^ selector);
public static int Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int> selector);
static member Max : seq<'Source> * Func<'Source, int> -> int
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Integer)) As Integer
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
source
に要素が含まれていません。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Int32>)、 の実装IComparable<T>をInt32使用して値を比較します。
のメンバーを数値型 (具体的には Int32) に投影する関数 を指定する場合は、selector
このメソッドを任意の値のsource
シーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Double>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、Double の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static double Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, double> ^ selector);
public static double Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,double> selector);
static member Max : seq<'Source> * Func<'Source, double> -> double
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Double)) As Double
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
source
に要素が含まれていません。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この例をこの記事で説明するオーバーロードに拡張するには、関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Double>)、 の実装IComparable<T>をDouble使用して値を比較します。
のメンバーを数値型 (具体的には Double) に投影する関数 を指定する場合は、selector
このメソッドを任意の値のsource
シーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、Decimal の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Decimal Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, System::Decimal> ^ selector);
public static decimal Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,decimal> selector);
static member Max : seq<'Source> * Func<'Source, decimal> -> decimal
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Decimal)) As Decimal
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
source
に要素が含まれていません。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この例をこの記事で説明するオーバーロードに拡張するには、関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Decimal>)、 の実装IComparable<T>をDecimal使用して値を比較します。
のメンバーを数値型 (具体的には Decimal) に投影する関数 を指定する場合は、selector
このメソッドを任意の値のsource
シーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, IComparer<TSource>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
ジェネリック シーケンスの最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Max(System::Collections::Generic::IEnumerable<TSource> ^ source, System::Collections::Generic::IComparer<TSource> ^ comparer);
public static TSource? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource>? comparer);
static member Max : seq<'Source> * System.Collections.Generic.IComparer<'Source> -> 'Source
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), comparer As IComparer(Of TSource)) As TSource
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
- comparer
- IComparer<TSource>
値を比較する IComparer<T>。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
のどのオブジェクトも IComparable または IComparable<T> インターフェイスを実装しません。
注釈
型 TSource
が を実装している IComparable<T>場合、 Max<TSource>(IEnumerable<TSource>) メソッドはその実装を使用して値を比較します。 それ以外の場合、型 TSource
で が実装されている IComparable場合、その実装は値の比較に使用されます。
が参照型で、ソース シーケンスが空であるか、 の値のみが含まれている場合 TSource
、このメソッドは null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
適用対象
Max<TSource>(IEnumerable<TSource>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
ジェネリック シーケンスの最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Max(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
public static TSource? Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member Max : seq<'Source> -> 'Source
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource)) As TSource
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
が null
です。
source
のどのオブジェクトも IComparable または IComparable<T> インターフェイスを実装しません。
例
次のコード例は、 を使用 Max<TSource>(IEnumerable<TSource>) して、オブジェクトの IComparable<T> シーケンス内の最大値を決定する方法を示しています。
/// <summary>
/// This class implements IComparable to be able to
/// compare one Pet to another Pet.
/// </summary>
class Pet : IComparable<Pet>
{
public string Name { get; set; }
public int Age { get; set; }
/// <summary>
/// Compares this Pet to another Pet by
/// summing each Pet's age and name length.
/// </summary>
/// <param name="other">The Pet to compare this Pet to.</param>
/// <returns>-1 if this Pet is 'less' than the other Pet,
/// 0 if they are equal,
/// or 1 if this Pet is 'greater' than the other Pet.</returns>
int IComparable<Pet>.CompareTo(Pet other)
{
int sumOther = other.Age + other.Name.Length;
int sumThis = this.Age + this.Name.Length;
if (sumOther > sumThis)
return -1;
else if (sumOther == sumThis)
return 0;
else
return 1;
}
}
public static void MaxEx3()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
Pet max = pets.Max();
Console.WriteLine(
"The 'maximum' animal is {0}.",
max.Name);
}
/*
This code produces the following output:
The 'maximum' animal is Barley.
*/
' This class implements IComparable
' and has a custom 'CompareTo' implementation.
Class Pet
Implements IComparable(Of Pet)
Public Name As String
Public Age As Integer
''' <summary>
''' Compares Pet objects by the sum of their age and name length.
''' </summary>
''' <param name="other">The Pet to compare this Pet to.</param>
''' <returns>-1 if this Pet's sum is 'less' than the other Pet,
''' 0 if they are equal,
''' or 1 if this Pet's sum is 'greater' than the other Pet.</returns>
Function CompareTo(ByVal other As Pet) As Integer _
Implements IComparable(Of Pet).CompareTo
If (other.Age + other.Name.Length > Me.Age + Me.Name.Length) Then
Return -1
ElseIf (other.Age + other.Name.Length = Me.Age + Me.Name.Length) Then
Return 0
Else
Return 1
End If
End Function
End Class
Sub MaxEx3()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Find the "maximum" pet according to the
' custom CompareTo() implementation.
Dim max As Pet = pets.Max()
' Display the result.
Console.WriteLine($"The 'maximum' animal is {max.Name}")
End Sub
' This code produces the following output:
'
' The 'maximum' animal is Barley
注釈
型 TSource
が を実装している IComparable<T>場合、 Max<TSource>(IEnumerable<TSource>) メソッドはその実装を使用して値を比較します。 それ以外の場合、型 TSource
で が実装されている IComparable場合、その実装は値の比較に使用されます。
が参照型で、ソース シーケンスが空であるか、 の値のみが含まれている場合 TSource
、このメソッドは null
を返します null
。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
Max<TSource>(IEnumerable<TSource>, Func<TSource,Int64>)
- ソース:
- Max.cs
- ソース:
- Max.cs
- ソース:
- Max.cs
シーケンスの各要素に対して変換関数を呼び出し、Int64 の最大値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static long Max(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, long> ^ selector);
public static long Max<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,long> selector);
static member Max : seq<'Source> * Func<'Source, int64> -> int64
<Extension()>
Public Function Max(Of TSource) (source As IEnumerable(Of TSource), selector As Func(Of TSource, Long)) As Long
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
最大値を確認する対象となる値のシーケンス。
戻り値
シーケンスの最大値。
例外
source
または selector
が null
です。
source
に要素が含まれていません。
例
次のコード例では、 を使用 Max<TSource>(IEnumerable<TSource>, Func<TSource,Int32>) して、一連の投影値の最大値を決定する方法を示します。
注意
このコード例では、この記事で説明する特定のオーバーロードとは異なる メソッドのオーバーロードを使用します。 この例をこの記事で説明するオーバーロードに拡張するには、関数の本体を変更します selector
。
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void MaxEx4()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
int max = pets.Max(pet => pet.Age + pet.Name.Length);
Console.WriteLine(
"The maximum pet age plus name length is {0}.",
max);
}
/*
This code produces the following output:
The maximum pet age plus name length is 14.
*/
Structure Pet
Public Name As String
Public Age As Integer
End Structure
Sub MaxEx4()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8},
New Pet With {.Name = "Boots", .Age = 4},
New Pet With {.Name = "Whiskers", .Age = 1}}
' Determine the "maximum" pet by passing a
' lambda expression to Max() that sums the pet's age
' and name length.
Dim max As Integer = pets.Max(Function(pet) _
pet.Age + pet.Name.Length)
' Display the result.
Console.WriteLine($"The maximum pet age plus name length is {max}")
End Sub
' This code produces the following output:
'
' The maximum pet age plus name length is 14
注釈
メソッドではMax<TSource>(IEnumerable<TSource>, Func<TSource,Int64>)、 の実装IComparable<T>をInt64使用して値を比較します。
のメンバーを数値型 (具体的には Int64) に投影する関数 を指定する場合は、selector
このメソッドを任意の値のsource
シーケンスに適用できます。
Visual Basic クエリ式の構文では、 句は Aggregate Into Max()
の Max呼び出しに変換されます。
こちらもご覧ください
適用対象
.NET