語言

IntSummaryStatistics 建構函式

定義

多載

名稱 Description
IntSummaryStatistics()

構造一個空實例,計數為零、和數為零、 Integer.MAX_VALUE 最小值、 Integer.MIN_VALUE 最大值和平均值為零。

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

構造一個非空實例,包含指定的 countminmaxsum

IntSummaryStatistics()

構造一個空實例,計數為零、和數為零、 Integer.MAX_VALUE 最小值、 Integer.MIN_VALUE 最大值和平均值為零。

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

備註

構造一個空實例,計數為零、和數為零、 Integer.MAX_VALUE 最小值、 Integer.MIN_VALUE 最大值和平均值為零。

java.util.IntSummaryStatistics.IntSummaryStatistics()Java 檔。

本頁部分內容為基於 Open Source Project 所創建與分享的作品,並依授權條款所描述的使用進行修改。

適用於

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

備註

本頁部分內容為基於 Open Source Project 所創建與分享的作品,並依授權條款所描述的使用進行修改。

適用於

IntSummaryStatistics(Int64, Int32, Int32, Int64)

構造一個非空實例,包含指定的 countminmaxsum

[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

所有值的總和

屬性

備註

構造一個非空實例,包含指定的 countminmaxsum

count 為零,則忽略其餘參數,建構一個空實例。

如果論證不一致,則會拋出 a IllegalArgumentException 。 必要的一致論證條件為:<ul<>li<>count >= 0/li li><min <= max/li<>/ul><>

加了10。

java.util.IntSummaryStatistics.IntSummaryStatistics(long, int, int, long)Java 檔。

本頁部分內容為基於 Open Source Project 所創建與分享的作品,並依授權條款所描述的使用進行修改。

適用於