Las palabras clave son las palabras en un idioma que se utilizan para algún proceso interno o representan algunas acciones predefinidas. byte es una palabra clave que se usa para declarar una variable que puede almacenar un rango de valores sin signo de 0 a 255. Es un alias de System.Byte .
La palabra clave byte ocupa 1 byte (8 bits) en la memoria.
Sintaxis:
byte variable_name = value;
Ejemplo:
Input: 250 Output: number: 250 Size of a byte variable: 1 Input: 150 Output: Type of num1: System.Byte num1: 150 Size of a byte variable: 1
Ejemplo 1:
// C# program to show the usage of byte keyword using System; using System.Text; class GFG { static void Main(string[] args) { // byte variable declaration byte num = 255; // to print value Console.WriteLine("num: " + num); // to print size of a byte Console.WriteLine("Size of a byte variable: " + sizeof(byte)); } }
Producción:
num: 255 Size of a byte variable: 1
Ejemplo 2:
// C# program to show the usage of byte keyword using System; using System.Text; class GFG { static void Main(string[] args) { // byte variable declaration byte num1 = 261; // to print value Console.WriteLine("num1: " + num1); // to print size of a byte Console.WriteLine("Size of a byte variable: " + sizeof(byte)); } }
Error: cuando ingresamos un número más allá del rango de (0-255).
Constant value `261' cannot be converted to a `byte'
Ejemplo 3:
// C# program to show the usage of byte keyword using System; using System.Text; namespace geeks { class GFG { static void Main(string[] args) { // byte variable declaration byte num1 = 150; // to print type of variable Console.WriteLine("Type of num1: " + num1.GetType()); // to print value Console.WriteLine("num1: " + num1); // to print size of a byte Console.WriteLine("Size of a byte variable: " + sizeof(byte)); // hit ENTER to exit Console.ReadLine(); } } }
Producción:
Type of num1: System.Byte num1: 150 Size of a byte variable: 1
Publicación traducida automáticamente
Artículo escrito por shivanisinghss2110 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA