Int16.MaxValue Veld

Definitie

Vertegenwoordigt de grootst mogelijke waarde van een Int16. Dit veld is constant.

public: short MaxValue = 32767;
public const short MaxValue = 32767;
val mutable MaxValue : int16
Public Const MaxValue As Short  = 32767

Waarde van veld

Value = 32767

Voorbeelden

In het volgende voorbeeld wordt de MaxValue eigenschap gebruikt om te voorkomen dat een OverflowException waarde wordt geconverteerd naar een Int16 waarde.

long[] numbersToConvert = {162345, 32183, -54000};
short newNumber;
foreach (long number in numbersToConvert)
{
   if (number >= Int16.MinValue && number <= Int16.MaxValue)
   {
      newNumber = Convert.ToInt16(number);
      Console.WriteLine($"Successfully converted {newNumber} to an Int16.");
   }
   else
   {
      Console.WriteLine($"Unable to convert {number} to an Int16.");
   }
}
// The example displays the following output to the console:
//       Unable to convert 162345 to an Int16.
//       Successfully converted 32183 to an Int16.
//       Unable to convert -54000 to an Int16.
open System

let numbersToConvert = [ 162345L; 32183L; -54000L ]

for number in numbersToConvert do
    if number >= int64 Int16.MinValue && number <= int64 Int16.MaxValue then
        let newNumber = Convert.ToInt16 number
        printfn $"Successfully converted {newNumber} to an Int16."
    else
        printfn $"Unable to convert {number} to an Int16."

// The example displays the following output to the console:
//       Unable to convert 162345 to an Int16.
//       Successfully converted 32183 to an Int16.
//       Unable to convert -54000 to an Int16.
Dim numbersToConvert() As Long = {162345, 32183, -54000}
Dim newNumber As Int16
For Each number As Long In NumbersToConvert
   If number >= Int16.MinValue And number <= Int16.MaxValue Then
      newNumber = Convert.ToInt16(number)
      Console.WriteLine("Successfully converted {0} to an Int16.", _
                        newNumber)
   Else
      Console.WriteLine("Unable to convert {0} to an Int16.", number)
   End If                     
Next
' The example displays the following output to the console:
'       Unable to convert 162345 to an Int16.
'       Successfully converted 32183 to an Int16.
'       Unable to convert -54000 to an Int16.

Opmerkingen

De waarde van deze constante is 32767; hexadecimale 0x7FFF.

De MaxValue eigenschap wordt meestal gebruikt om te voorkomen dat een OverflowException getal wordt geconverteerd van een numeriek type met een groter bovenbereik (zoals een UInt16 of a Int32) naar een Int16. In het voorbeeld ziet u dit gebruik.

Van toepassing op

Zie ook