Sprache

Math.CeilMod Methode

Definition

Überlädt

Name Beschreibung
CeilMod(Int32, Int32)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

CeilMod(Int64, Int32)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

CeilMod(Int64, Int64)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

CeilMod(Int32, Int32)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

[Android.Runtime.Register("ceilMod", "(II)I", "", ApiSince=35)]
public static int CeilMod(int x, int y);
[<Android.Runtime.Register("ceilMod", "(II)I", "", ApiSince=35)>]
static member CeilMod : int * int -> int

Parameter

x
Int32

Der Dividend

y
Int32

Der Divisor

Gibt zurück

x - ceilDiv(x, y) * y.

Attribute

Ausnahmen

wenn y null ist.

Hinweise

Gibt x - ceilDiv(x, y) * y zurück.

Gilt für:

CeilMod(Int64, Int32)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

[Android.Runtime.Register("ceilMod", "(JI)I", "", ApiSince=35)]
public static int CeilMod(long x, int y);
[<Android.Runtime.Register("ceilMod", "(JI)I", "", ApiSince=35)>]
static member CeilMod : int64 * int -> int

Parameter

x
Int64

Der Dividend

y
Int32

Der Divisor

Gibt zurück

x - ceilDiv(x, y) * y.

Attribute

Ausnahmen

wenn y null ist.

Hinweise

Gibt x - ceilDiv(x, y) * y zurück.

Gilt für:

CeilMod(Int64, Int64)

Gibt den Rest zurück, der der Obergrenze zugeordnet ist.

[Android.Runtime.Register("ceilMod", "(JJ)J", "", ApiSince=35)]
public static long CeilMod(long x, long y);
[<Android.Runtime.Register("ceilMod", "(JJ)J", "", ApiSince=35)>]
static member CeilMod : int64 * int64 -> int64

Parameter

x
Int64

Der Dividend

y
Int64

Der Divisor

Gibt zurück

x - ceilDiv(x, y) * y.

Attribute

Ausnahmen

wenn y null ist.

Hinweise

Gibt x - ceilDiv(x, y) * y zurück.

Gilt für: