Las palabras clave son las palabras en un idioma que se utilizan para algún proceso interno o representan algunas acciones predefinidas. bool es una palabra clave que se utiliza para declarar una variable que puede almacenar valores booleanos verdaderos o falsos. Es un alias de System.Boolean .
Bool Keyword ocupa 1 byte (8 bits) en la memoria. Solo hay dos valores posibles de bool, es decir, verdadero o falso .
Sintaxis:
bool variable_name = value;
Ejemplo:
Input: true Output: answer: False Size of a byte variable: 1 Input: false Output: Type of answer: System.Boolean answer: True Size of a bool variable: 1
Ejemplo 1:
// C# program for bool keyword using System; using System.Text; class GFG { static void Main(string[] args) { // bool variable declaration bool answer = false; // to print value Console.WriteLine("answer: " + answer); // to print size of a bool Console.WriteLine("Size of a bool variable: " + sizeof(bool)); } }
Producción:
answer: False Size of a bool variable: 1
Ejemplo 2:
// C# program for bool keyword using System; using System.Text; namespace geeks { class GFG { static void Main(string[] args) { // bool variable declaration bool answer = true; // to print type of variable Console.WriteLine("Type of answer: " + answer.GetType()); // to print value Console.WriteLine("answer: " + answer); // to print size of a bool Console.WriteLine("Size of a bool variable: " + sizeof(bool)); // hit ENTER to exit Console.ReadLine(); } } }
Producción:
Type of answer: System.Boolean answer: True Size of a bool 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