영어로 읽기

다음을 통해 공유


Enumerable.Aggregate 메서드

정의

오버로드

Aggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>)

시퀀스에 누적기 함수를 적용합니다. 지정된 시드 값은 초기 누적기 값으로 사용되고 지정된 함수는 결과 값을 선택하는 데 사용됩니다.

Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>)

시퀀스에 누적기 함수를 적용합니다. 지정된 시드 값은 초기 누적기 값으로 사용됩니다.

Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>)

시퀀스에 누적기 함수를 적용합니다.

Aggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>)

Source:
Aggregate.cs
Source:
Aggregate.cs
Source:
Aggregate.cs

시퀀스에 누적기 함수를 적용합니다. 지정된 시드 값은 초기 누적기 값으로 사용되고 지정된 함수는 결과 값을 선택하는 데 사용됩니다.

public static TResult Aggregate<TSource,TAccumulate,TResult> (this System.Collections.Generic.IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TAccumulate> func, Func<TAccumulate,TResult> resultSelector);

형식 매개 변수

TSource

source 요소의 형식입니다.

TAccumulate

누적기 값의 형식입니다.

TResult

결과 값의 형식입니다.

매개 변수

source
IEnumerable<TSource>

집계할 IEnumerable<T>입니다.

seed
TAccumulate

초기 누적기 값입니다.

func
Func<TAccumulate,TSource,TAccumulate>

각 요소에 대해 호출할 누적기 함수입니다.

resultSelector
Func<TAccumulate,TResult>

최종 누적기 값을 결과 값으로 변환하는 함수입니다.

반환

TResult

변환된 최종 누적기 값입니다.

예외

source, func 또는 resultSelectornull인 경우

예제

다음 코드 예제에서는 를 사용하여 Aggregate 누적기 함수 및 결과 선택기를 적용하는 방법을 보여 줍니다.

string[] fruits = { "apple", "mango", "orange", "passionfruit", "grape" };

// Determine whether any string in the array is longer than "banana".
string longestName =
    fruits.Aggregate("banana",
                    (longest, next) =>
                        next.Length > longest.Length ? next : longest,
    // Return the final result as an upper case string.
                    fruit => fruit.ToUpper());

Console.WriteLine(
    "The fruit with the longest name is {0}.",
    longestName);

// This code produces the following output:
//
// The fruit with the longest name is PASSIONFRUIT.

설명

메서드를 Aggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>) 사용하면 값 시퀀스에 대한 계산을 간단하게 수행할 수 있습니다. 이 메서드는 의 각 요소에 대해 한 번 호출 func 하여 작동합니다 source. 를 호출 Aggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>) 할 때마다 func 시퀀스의 요소와 집계된 값(첫 번째 인수로 )을 func모두 전달합니다. 매개 변수의 seed 값은 초기 집계 값으로 사용됩니다. 의 결과는 func 이전 집계된 값을 대체합니다. 의 func 최종 결과는 에 전달되어 resultSelectorAggregate<TSource,TAccumulate,TResult>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>, Func<TAccumulate,TResult>)최종 결과를 가져옵니다.

일반적인 집계 작업을 간소화하기 위해 표준 쿼리 연산자는 범용 개수 메서드, Count및 4개의 숫자 집계 메서드( 즉Min, , , MaxSumAverage)도 포함합니다.

적용 대상

.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

Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>)

Source:
Aggregate.cs
Source:
Aggregate.cs
Source:
Aggregate.cs

시퀀스에 누적기 함수를 적용합니다. 지정된 시드 값은 초기 누적기 값으로 사용됩니다.

public static TAccumulate Aggregate<TSource,TAccumulate> (this System.Collections.Generic.IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TAccumulate> func);

형식 매개 변수

TSource

source 요소의 형식입니다.

TAccumulate

누적기 값의 형식입니다.

매개 변수

source
IEnumerable<TSource>

집계할 IEnumerable<T>입니다.

seed
TAccumulate

초기 누적기 값입니다.

func
Func<TAccumulate,TSource,TAccumulate>

각 요소에 대해 호출할 누적기 함수입니다.

반환

TAccumulate

최종 누적기 값입니다.

예외

source 또는 funcnull인 경우

예제

다음 코드 예제에서는 를 사용하여 Aggregate 누적기 함수를 적용하고 시드 값을 사용하는 방법을 보여 줍니다.

int[] ints = { 4, 8, 8, 3, 9, 0, 7, 8, 2 };

// Count the even numbers in the array, using a seed value of 0.
int numEven = ints.Aggregate(0, (total, next) =>
                                    next % 2 == 0 ? total + 1 : total);

Console.WriteLine("The number of even integers is: {0}", numEven);

// This code produces the following output:
//
// The number of even integers is: 6

설명

메서드를 Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>) 사용하면 값 시퀀스에 대한 계산을 간단하게 수행할 수 있습니다. 이 메서드는 의 각 요소에 대해 한 번 호출 func 하여 작동합니다 source. 를 호출 Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>) 할 때마다 func 시퀀스의 요소와 집계된 값(첫 번째 인수로 )을 func모두 전달합니다. 매개 변수의 seed 값은 초기 집계 값으로 사용됩니다. 의 결과는 func 이전 집계된 값을 대체합니다. Aggregate<TSource,TAccumulate>(IEnumerable<TSource>, TAccumulate, Func<TAccumulate,TSource,TAccumulate>) 는 의 최종 결과를 반환합니다 func.

일반적인 집계 작업을 간소화하기 위해 표준 쿼리 연산자는 범용 개수 메서드, Count및 4개의 숫자 집계 메서드( 즉Min, , , MaxSumAverage)도 포함합니다.

적용 대상

.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

Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>)

Source:
Aggregate.cs
Source:
Aggregate.cs
Source:
Aggregate.cs

시퀀스에 누적기 함수를 적용합니다.

public static TSource Aggregate<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TSource,TSource> func);

형식 매개 변수

TSource

source 요소의 형식입니다.

매개 변수

source
IEnumerable<TSource>

집계할 IEnumerable<T>입니다.

func
Func<TSource,TSource,TSource>

각 요소에 대해 호출할 누적기 함수입니다.

반환

TSource

최종 누적기 값입니다.

예외

source 또는 funcnull인 경우

source에 요소가 없는 경우

예제

다음 코드 예제를 사용 하 여 Aggregate문자열에서 단어의 순서를 역방향 하는 방법을 보여 줍니다.

string sentence = "the quick brown fox jumps over the lazy dog";

// Split the string into individual words.
string[] words = sentence.Split(' ');

// Prepend each word to the beginning of the
// new sentence to reverse the word order.
string reversed = words.Aggregate((workingSentence, next) =>
                                      next + " " + workingSentence);

Console.WriteLine(reversed);

// This code produces the following output:
//
// dog lazy the over jumps fox brown quick the

설명

메서드를 Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>) 사용하면 값 시퀀스에 대한 계산을 간단하게 수행할 수 있습니다. 이 메서드는 첫 번째 요소를 제외한 의 각 요소에 source 대해 한 번 호출 func 하여 작동합니다. 를 호출 Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>) 할 때마다 func 시퀀스의 요소와 집계된 값(첫 번째 인수로 )을 func모두 전달합니다. 의 source 첫 번째 요소는 초기 집계 값으로 사용됩니다. 의 결과는 func 이전 집계된 값을 대체합니다. Aggregate<TSource>(IEnumerable<TSource>, Func<TSource,TSource,TSource>) 는 의 최종 결과를 반환합니다 func.

메서드의 Aggregate 이 오버로드는 의 첫 번째 요소를 source 초기 집계 값으로 사용하기 때문에 모든 경우에 적합하지 않습니다. 반환 값에 특정 조건을 충족하는 의 source 요소만 포함해야 하는 경우 다른 오버로드를 선택해야 합니다. 예를 들어 의 짝수 합계 source를 계산하려는 경우 이 오버로드는 신뢰할 수 없습니다. 첫 번째 요소가 짝수 대신 홀수이면 결과가 올바르지 않습니다.

일반적인 집계 작업을 간소화하기 위해 표준 쿼리 연산자는 범용 개수 메서드, Count및 4개의 숫자 집계 메서드( 즉Min, , , MaxSumAverage)도 포함합니다.

적용 대상

.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