Decimal.Modulus(Decimal, Decimal) Operátor

Definíció

A két megadott Decimal érték osztásából eredő fennmaradó értéket adja vissza.

public:
 static System::Decimal operator %(System::Decimal d1, System::Decimal d2);
public:
 static System::Decimal operator %(System::Decimal d1, System::Decimal d2) = System::Numerics::IModulusOperators<System::Decimal, System::Decimal, System::Decimal>::op_Modulus;
public static decimal operator %(decimal d1, decimal d2);
static member ( % ) : decimal * decimal -> decimal
Public Shared Operator Mod (d1 As Decimal, d2 As Decimal) As Decimal

Paraméterek

d1
Decimal

Az osztalék.

d2
Decimal

Az osztó.

Válaszok

A maradék, amely a osztásból származik d1d2.

Megvalósítás

Kivételek

d2 az zero.

A visszatérési érték kisebb, mint a Decimal.MinValue vagy nagyobb, mint a Decimal.MaxValue.

Megjegyzések

Az Modulus operátor határozza meg a fennmaradó műveletet, amely két megadott Decimal érték osztásából eredő maradékot adja vissza. Engedélyezi a következő kódokat:

using System;

public class Example
{
   public static void Main()
   {
      Decimal number1 = 16.8m;
      Decimal number2 = 4.1m;
      Decimal number3 = number1 % number2;
      Console.WriteLine("{0:N2} % {1:N2} = {2:N2}",
                        number1, number2, number3);
   }
}
// The example displays the following output:
//        16.80 % 4.10 = 0.40
let number1 = 16.8m
let number2 = 4.1m
let number3 = number1 % number2
printfn $"{number1:N2} %% {number2:N2} = {number3:N2}"

// The example displays the following output:
//        16.80 % 4.10 = 0.40
Module Example
   Public Sub Main()
      Dim number1 As Decimal = 16.8d 
      Dim number2 As Decimal = 4.1d 
      Dim number3 As Decimal = number1 Mod number2
      Console.WriteLine("{0:N2} Mod {1:N2} = {2:N2}", 
                        number1, number2, number3)
   End Sub
End Module
' The example displays the following output:
'       16.80 Mod 4.10 = 0.40

A fennmaradó művelet által visszaadott érték jele az osztalék előjelétől függ. Ha az osztalék pozitív, a fennmaradó művelet pozitív eredményt ad vissza; ha negatív, a fennmaradó művelet negatív eredményt ad vissza.

Ennek az operátornak az egyenértékű metódusa a következő Decimal.Remainder(Decimal, Decimal). Ha a használt nyelv nem támogatja az egyéni operátorokat, hívja inkább a metódust Remainder .

A következőre érvényes:

Lásd még