Lingua

BigDecimal.Remainder Metodo

Definizione

Overload

Nome Descrizione
Remainder(BigDecimal)

Restituisce un oggetto plain BigDecimal il cui valore è il resto di this/rhs, utilizzando l'aritmetica a virgola fissa.

Remainder(BigDecimal, MathContext)

Restituisce un oggetto BigDecimal il cui valore è il resto di this/rhs.

Remainder(BigDecimal)

Restituisce un oggetto plain BigDecimal il cui valore è il resto di this/rhs, utilizzando l'aritmetica a virgola fissa.

[Android.Runtime.Register("remainder", "(Landroid/icu/math/BigDecimal;)Landroid/icu/math/BigDecimal;", "GetRemainder_Landroid_icu_math_BigDecimal_Handler", ApiSince=24)]
public virtual Android.Icu.Math.BigDecimal? Remainder(Android.Icu.Math.BigDecimal? rhs);
[<Android.Runtime.Register("remainder", "(Landroid/icu/math/BigDecimal;)Landroid/icu/math/BigDecimal;", "GetRemainder_Landroid_icu_math_BigDecimal_Handler", ApiSince=24)>]
abstract member Remainder : Android.Icu.Math.BigDecimal -> Android.Icu.Math.BigDecimal
override this.Remainder : Android.Icu.Math.BigDecimal -> Android.Icu.Math.BigDecimal

Parametri

rhs
BigDecimal

Oggetto BigDecimal per il lato destro dell'operazione di resto.

Valori restituiti

Oggetto BigDecimal il cui valore è il resto di this/rhs, utilizzando l'aritmetica a virgola fissa.

Attributi

Commenti

Restituisce un oggetto plain BigDecimal il cui valore è il resto di this/rhs, utilizzando l'aritmetica a virgola fissa.

Uguale a #remainder(BigDecimal, MathContext), dove BigDecimal è rhse il contesto è new MathContext(0, MathContext.PLAIN).

Questo non è l'operatore modulo. Il risultato può essere negativo.

per android.icu.math.BigDecimal.remainder(android.icu.math.BigDecimal).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

Remainder(BigDecimal, MathContext)

Restituisce un oggetto BigDecimal il cui valore è il resto di this/rhs.

[Android.Runtime.Register("remainder", "(Landroid/icu/math/BigDecimal;Landroid/icu/math/MathContext;)Landroid/icu/math/BigDecimal;", "GetRemainder_Landroid_icu_math_BigDecimal_Landroid_icu_math_MathContext_Handler", ApiSince=24)]
public virtual Android.Icu.Math.BigDecimal? Remainder(Android.Icu.Math.BigDecimal? rhs, Android.Icu.Math.MathContext? set);
[<Android.Runtime.Register("remainder", "(Landroid/icu/math/BigDecimal;Landroid/icu/math/MathContext;)Landroid/icu/math/BigDecimal;", "GetRemainder_Landroid_icu_math_BigDecimal_Landroid_icu_math_MathContext_Handler", ApiSince=24)>]
abstract member Remainder : Android.Icu.Math.BigDecimal * Android.Icu.Math.MathContext -> Android.Icu.Math.BigDecimal
override this.Remainder : Android.Icu.Math.BigDecimal * Android.Icu.Math.MathContext -> Android.Icu.Math.BigDecimal

Parametri

rhs
BigDecimal

Oggetto BigDecimal per il lato destro dell'operazione di resto.

set
MathContext

Impostazioni MathContext aritmetiche.

Valori restituiti

Oggetto BigDecimal il cui valore è il resto di this+rhs.

Attributi

Commenti

Restituisce un oggetto BigDecimal il cui valore è il resto di this/rhs.

Implementa l'operatore di resto (come definito nella documentazione decimale, vedere BigDecimal class header) e restituisce il risultato come BigDecimal oggetto .

Questo non è l'operatore modulo. Il risultato può essere negativo.

per android.icu.math.BigDecimal.remainder(android.icu.math.BigDecimal, android.icu.math.MathContext).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a