언어

IntSummaryStatistics 생성자

정의

오버로드

속성 Description
IntSummaryStatistics()

0 개수, 0 합계, 최소Integer.MIN_VALUE, Integer.MAX_VALUE 최대 및 0 평균으로 빈 인스턴스를 생성합니다.

IntSummaryStatistics(IntPtr, JniHandleOwnership)
IntSummaryStatistics(Int64, Int32, Int32, Int64)

지정된 , maxmin및 .를 사용하여 비어있지 않은 인스턴스를 count생성합니다sum.

IntSummaryStatistics()

0 개수, 0 합계, 최소Integer.MIN_VALUE, Integer.MAX_VALUE 최대 및 0 평균으로 빈 인스턴스를 생성합니다.

[Android.Runtime.Register(".ctor", "()V", "", ApiSince=24)]
public IntSummaryStatistics();
특성

설명

0 개수, 0 합계, 최소Integer.MIN_VALUE, Integer.MAX_VALUE 최대 및 0 평균으로 빈 인스턴스를 생성합니다.

에 대한 java.util.IntSummaryStatistics.IntSummaryStatistics()Java 설명서

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상

IntSummaryStatistics(IntPtr, JniHandleOwnership)

protected IntSummaryStatistics(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.IntSummaryStatistics : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.IntSummaryStatistics

매개 변수

javaReference
IntPtr

nativeint

설명

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상

IntSummaryStatistics(Int64, Int32, Int32, Int64)

지정된 , maxmin및 .를 사용하여 비어있지 않은 인스턴스를 count생성합니다sum.

[Android.Runtime.Register(".ctor", "(JIIJ)V", "", ApiSince=33)]
public IntSummaryStatistics(long count, int min, int max, long sum);
[<Android.Runtime.Register(".ctor", "(JIIJ)V", "", ApiSince=33)>]
new Java.Util.IntSummaryStatistics : int64 * int * int * int64 -> Java.Util.IntSummaryStatistics

매개 변수

count
Int64

값 개수

min
Int32

최소값

max
Int32

최대값

sum
Int64

모든 값의 합계

특성

설명

지정된 , maxmin및 .를 사용하여 비어있지 않은 인스턴스를 count생성합니다sum.

0이면 count 나머지 인수가 무시되고 빈 인스턴스가 생성됩니다.

인수가 일치하지 않으면 throw IllegalArgumentException 됩니다. 필요한 일관된 인수 조건은 <ul><licount >= 0<>/li><li/li<>min <= max<>/ul입니다.>

10에 추가되었습니다.

에 대한 java.util.IntSummaryStatistics.IntSummaryStatistics(long, int, int, long)Java 설명서

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상