Int16.MaxValue 필드

정의

Int16의 최대값을 나타냅니다. 이 필드는 상수입니다.

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

필드 값

Value = 32767

예제

다음 예제에서는 사용 합니다 MaxValue 속성을 방지 OverflowException 하는 값으로 변환할 때 합니다 Int16 .

array<Int64>^ numbersToConvert = {162345, 32183, -54000};
Int16 newNumber;
for each (Int64 number in numbersToConvert)
{
   if (number >= Int16::MinValue && number <= Int16::MaxValue)
   {
      newNumber = Convert::ToInt16(number);
      Console::WriteLine("Successfully converted {0} to an Int16.", 
                         newNumber);
   }
   else
   {
      Console::WriteLine("Unable to convert {0} to an Int16.", number);
   }
}
// The example displays the following output:
//       Unable to convert 162345 to an Int16.
//       Successfully converted 32183 to an Int16.
//       Unable to convert -54000 to an Int16.
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.

설명

이 상수의 값은 32767입니다. 즉, 16진수 0x7FFF.

속성은 MaxValue 대개 상위 범위(예: 또는 Int32)를 가진 숫자 형식에서 로 변환할 Int16때 를 UInt16 방지하는 OverflowException 데 사용됩니다. 이 예제에서는 이 사용량을 보여 줍니다.

적용 대상

추가 정보