IntSummaryStatistics 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| 속성 | Description |
|---|---|
| IntSummaryStatistics() |
0 개수, 0 합계, 최소 |
| IntSummaryStatistics(IntPtr, JniHandleOwnership) | |
| IntSummaryStatistics(Int64, Int32, Int32, Int64) |
지정된 , |
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
- transfer
- JniHandleOwnership
설명
이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.
적용 대상
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 설명서
이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.