Baca dalam bahasa Inggris

Bagikan melalui


Int32.MaxValue Bidang

Definisi

Mewakili nilai terbesar yang mungkin dari .Int32 Bidang ini konstan.

public const int MaxValue = 2147483647;

Nilai Bidang

Value = 2147483647

Contoh

Contoh berikut menggunakan MaxValue properti untuk mencegah OverflowException saat mengonversi ke Int32 nilai.

using System;

public class Class1
{
   public static void Main()
   {
      long[] numbersToConvert = { 162345, 32183, -54000, Int64.MaxValue/2 };
      int newNumber;
      foreach (long number in numbersToConvert)
      {
         if (number >= Int32.MinValue && number <= Int32.MaxValue)
         {
            newNumber = Convert.ToInt32(number);
            Console.WriteLine($"Successfully converted {newNumber} to an Int32.");
         }
         else
         {
            Console.WriteLine($"Unable to convert {number} to an Int32.");
         }
      }
   }
}
// The example displays the following output to the console:
//    Successfully converted 162345 to an Int32.
//    Successfully converted 32183 to an Int32.
//    Successfully converted -54000 to an Int32.
//    Unable to convert 4611686018427387903 to an Int32.

Keterangan

Nilai konstanta ini adalah 2.147.483.647; yaitu, 0x7FFFFFFF heksadesimal.

Berlaku untuk

Lihat juga