BigInteger.LessThan Operátor
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vrátí hodnotu, která označuje, zda je zadaná hodnota menší než zadaná hodnota sekundy.
Přetížení
LessThan(UInt64, BigInteger) |
Vrátí hodnotu, která označuje, zda je 64bitové celé číslo bez znaménka menší než BigInteger hodnota. |
LessThan(BigInteger, UInt64) |
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než 64bitové celé číslo bez znaménka. |
LessThan(BigInteger, Int64) |
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než 64bitové celé číslo se znaménkem. |
LessThan(Int64, BigInteger) |
Vrátí hodnotu, která označuje, zda je 64bitové celé číslo se znaménkem BigInteger menší než hodnota. |
LessThan(BigInteger, BigInteger) |
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než jiná BigInteger hodnota. |
LessThan(UInt64, BigInteger)
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
Důležité
Toto rozhraní API neodpovídá specifikaci CLS.
Vrátí hodnotu, která označuje, zda je 64bitové celé číslo bez znaménka menší než BigInteger hodnota.
public:
static bool operator <(System::UInt64 left, System::Numerics::BigInteger right);
[System.CLSCompliant(false)]
public static bool operator < (ulong left, System.Numerics.BigInteger right);
[<System.CLSCompliant(false)>]
static member ( < ) : uint64 * System.Numerics.BigInteger -> bool
Public Shared Operator < (left As ULong, right As BigInteger) As Boolean
Parametry
- left
- UInt64
První hodnota pro porovnání.
- right
- BigInteger
Druhá hodnota pro porovnání.
Návraty
true
pokud left
je menší než right
; v opačném případě . false
- Atributy
Poznámky
Metoda LessThan definuje operaci operátoru less than pro BigInteger hodnoty. Umožňuje následující typ kódu:
BigInteger number = BigInteger.Parse("9801324316220166912");
if (UInt64.MaxValue < number)
{
// Do something.
}
else
{
// Do something else.
}
let number = BigInteger.Parse "9801324316220166912"
if bigint UInt64.MaxValue < number then
// Do something.
()
else
// Do something else.
()
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If UInt64.MaxValue < number Then
' Do something.
Else
' Do something else.
End If
Jazyky, které nepodporují vlastní operátory, můžou místo toho volat metodu BigInteger.CompareTo(UInt64) . Mohou také volat metodu LessThan(UInt64, BigInteger) přímo, jak ukazuje následující příklad.
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If BigInteger.op_LessThan(UInt64.MaxValue, number) Then
' Do something.
Else
' Do something else.
End If
Ekvivalentní metoda pro tento operátor je BigInteger.CompareTo(UInt64).
Viz také
Platí pro
LessThan(BigInteger, UInt64)
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
Důležité
Toto rozhraní API neodpovídá specifikaci CLS.
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než 64bitové celé číslo bez znaménka.
public:
static bool operator <(System::Numerics::BigInteger left, System::UInt64 right);
[System.CLSCompliant(false)]
public static bool operator < (System.Numerics.BigInteger left, ulong right);
[<System.CLSCompliant(false)>]
static member ( < ) : System.Numerics.BigInteger * uint64 -> bool
Public Shared Operator < (left As BigInteger, right As ULong) As Boolean
Parametry
- left
- BigInteger
První hodnota pro porovnání.
- right
- UInt64
Druhá hodnota pro porovnání.
Návraty
true
pokud left
je menší než right
; v opačném případě . false
- Atributy
Poznámky
Metoda LessThan definuje operaci operátoru less than pro BigInteger hodnoty. Umožňuje následující typ kódu:
BigInteger number = BigInteger.Parse("19801324316220166912");
if (number < UInt64.MaxValue)
{
// Do something.
}
else
{
// Do something else.
}
let number = BigInteger.Parse "19801324316220166912"
if number < UInt64.MaxValue then
// Do something.
()
else
// Do something else.
()
Dim number As BigInteger = BigInteger.Parse("19801324316220166912")
If number < UInt64.MaxValue Then
' Do something.
Else
' Do something else.
End If
Jazyky, které nepodporují vlastní operátory, můžou místo toho volat metodu BigInteger.CompareTo(UInt64) . Mohou také volat metodu LessThan(BigInteger, UInt64) přímo, jak ukazuje následující příklad.
Dim number As BigInteger = BigInteger.Parse("19801324316220166912")
If BigInteger.op_LessThan(number, UInt64.MaxValue) Then
' Do something.
Else
' Do something else.
End If
Ekvivalentní metoda pro tento operátor je BigInteger.CompareTo(UInt64).
Viz také
Platí pro
LessThan(BigInteger, Int64)
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než 64bitové celé číslo se znaménkem.
public:
static bool operator <(System::Numerics::BigInteger left, long right);
public static bool operator < (System.Numerics.BigInteger left, long right);
static member ( < ) : System.Numerics.BigInteger * int64 -> bool
Public Shared Operator < (left As BigInteger, right As Long) As Boolean
Parametry
- left
- BigInteger
První hodnota pro porovnání.
- right
- Int64
Druhá hodnota pro porovnání.
Návraty
true
pokud left
je menší než right
; v opačném případě . false
Poznámky
Metoda LessThan definuje operaci operátoru less than pro BigInteger hodnoty. Umožňuje následující typ kódu:
BigInteger number = BigInteger.Parse("9801324316220166912");
if (number < Int64.MaxValue)
{
// Do something.
}
else
{
// Do something else.
}
let number = BigInteger.Parse "9801324316220166912"
if number < Int64.MaxValue then
// Do something.
()
else
// Do something else.
()
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If number < Int64.MaxValue Then
' Do something.
Else
' Do something else.
End If
Jazyky, které nepodporují vlastní operátory, můžou místo toho volat metodu BigInteger.CompareTo(Int64) . Některé jazyky také můžou volat metodu LessThan(BigInteger, Int64) přímo, jak ukazuje následující příklad.
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If BigInteger.op_LessThan(number, Int64.MaxValue) Then
' Do something.
Else
' Do something else.
End If
Pokud right
je Bytehodnota , Int16, Int32UInt16SBytenebo , je UInt32 při provedení operace implicitně převedena na Int64 hodnotu.
Ekvivalentní metoda pro tento operátor je BigInteger.CompareTo(Int64).
Viz také
Platí pro
LessThan(Int64, BigInteger)
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
Vrátí hodnotu, která označuje, zda je 64bitové celé číslo se znaménkem BigInteger menší než hodnota.
public:
static bool operator <(long left, System::Numerics::BigInteger right);
public static bool operator < (long left, System.Numerics.BigInteger right);
static member ( < ) : int64 * System.Numerics.BigInteger -> bool
Public Shared Operator < (left As Long, right As BigInteger) As Boolean
Parametry
- left
- Int64
První hodnota pro porovnání.
- right
- BigInteger
Druhá hodnota pro porovnání.
Návraty
true
pokud left
je menší než right
; v opačném případě . false
Poznámky
Metoda LessThan definuje operaci operátoru less than pro BigInteger hodnoty. Umožňuje následující typ kódu:
BigInteger number = BigInteger.Parse("9801324316220166912");
if (Int64.MaxValue < number)
{
// Do something.
}
else
{
// Do something else.
}
let number = BigInteger.Parse "9801324316220166912"
if bigint Int64.MaxValue < number then
// Do something.
()
else
// Do something else.
()
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If Int64.MaxValue < number Then
' Do something.
Else
' Do something else.
End If
Jazyky, které nepodporují vlastní operátory, můžou místo toho volat metodu BigInteger.CompareTo(Int64) . Některé jazyky také můžou volat metodu LessThan(Int64, BigInteger) přímo, jak ukazuje následující příklad.
Dim number As BigInteger = BigInteger.Parse("9801324316220166912")
If BigInteger.op_LessThan(Int64.MaxValue, number) Then
' Do something.
Else
' Do something else.
End If
Pokud left
je Bytehodnota , Int16, Int32UInt16SBytenebo , je UInt32 při provedení operace implicitně převedena na Int64 hodnotu.
Ekvivalentní metoda pro tento operátor je BigInteger.CompareTo(Int64).
Viz také
Platí pro
LessThan(BigInteger, BigInteger)
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
- Zdroj:
- BigInteger.cs
Vrátí hodnotu, která označuje, zda BigInteger je hodnota menší než jiná BigInteger hodnota.
public:
static bool operator <(System::Numerics::BigInteger left, System::Numerics::BigInteger right);
public:
static bool operator <(System::Numerics::BigInteger left, System::Numerics::BigInteger right) = System::Numerics::IComparisonOperators<System::Numerics::BigInteger, System::Numerics::BigInteger, bool>::op_LessThan;
public static bool operator < (System.Numerics.BigInteger left, System.Numerics.BigInteger right);
static member ( < ) : System.Numerics.BigInteger * System.Numerics.BigInteger -> bool
Public Shared Operator < (left As BigInteger, right As BigInteger) As Boolean
Parametry
- left
- BigInteger
První hodnota pro porovnání.
- right
- BigInteger
Druhá hodnota pro porovnání.
Návraty
true
pokud left
je menší než right
; v opačném případě . false
Implementuje
Poznámky
Metoda LessThan definuje operaci operátoru less than pro BigInteger hodnoty. Umožňuje následující typ kódu:
BigInteger number1 = 945834723;
BigInteger number2 = 345145625;
BigInteger number3 = 945834724;
Console.WriteLine(number1 < number2); // Displays False
Console.WriteLine(number1 < number3); // Displays True
let number1 = 945834723I
let number2 = 345145625I
let number3 = 945834724I
printfn $"{number1 < number2}" // Displays False
printfn $"{number1 < number3}" // Displays True
Dim number1 As BigInteger = 945834723
Dim number2 As BigInteger = 345145625
Dim number3 As BigInteger = 945834724
Console.WriteLine(number1 < number2) ' Displays False
Console.WriteLine(number1 < number3) ' Displays True
Jazyky, které nepodporují vlastní operátory, můžou místo toho volat metodu BigInteger.Compare . Některé jazyky také můžou volat metodu LessThan(BigInteger, BigInteger) přímo, jak ukazuje následující příklad.
Dim numberA As BigInteger = 945834723
Dim numberB As BigInteger = 345145625
Dim numberC As BigInteger = 945834724
Console.WriteLine(BigInteger.op_LessThan(numberA, numberB)) ' Displays False
Console.WriteLine(BigInteger.op_LessThan(numberA, numberC)) ' Displays True
Ekvivalentní metoda pro tento operátor je BigInteger.Compare(BigInteger, BigInteger).