Las palabras clave son las palabras en un idioma que se utilizan para algún proceso interno o representan algunas acciones predefinidas. ulong es una palabra clave que se usa para declarar una variable que puede almacenar un valor entero sin signo del rango 0 a 18,446,744,073,709,551,615 . Es un alias de System.UInt64 .
La palabra clave ulong ocupa 8 bytes (64 bits) de espacio en la memoria.
Sintaxis:
ulong variable_name = value;
Ejemplo:
Input: num: 223 Output: num: 223 Size of a ulong variable: 8 Input: num = 0 Output: Type of num: System.UInt64 num: 0 Size of a ulong variable: 8
Nota:
- Si ingresamos un número más allá del rango, muestra error-
Integral constant is too large
- Si ingresamos un valor incorrecto para, por ejemplo. -34, muestra error-
Constant value `-34' cannot be converted to a `ulong'
Ejemplo 1:
// C# program for ulong keyword using System; using System.Text; class Prog { static void Main(string[] args) { // variable declaration ulong num = 223; // to print value Console.WriteLine("num: " + num); // to print size Console.WriteLine("Size of a ulong variable: " + sizeof(ulong)); } }
Producción:
num: 223 Size of a ulong variable: 8
Ejemplo 2:
// C# program for ulong keyword using System; using System.Text; namespace Test { class Prog { static void Main(string[] args) { // variable declaration ulong num = 0; // to print type of variable Console.WriteLine("Type of num: " + num.GetType()); // to print value Console.WriteLine("num: " + num); // to print size Console.WriteLine("Size of a ulong variable: " + sizeof(ulong)); // to print minimum & maximum value of ulong Console.WriteLine("Min value of ulong: " + ulong.MinValue); Console.WriteLine("Max value of ulong: " + ulong.MaxValue); // hit ENTER to exit Console.ReadLine(); } } }
Producción:
Type of num: System.UInt64 num: 0 Size of a ulong variable: 8 Min value of ulong: 0 Max value of ulong: 18446744073709551615
Publicación traducida automáticamente
Artículo escrito por shivanisinghss2110 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA