Examples of using
Bool
in Spanish and their translations into English
{-}
Colloquial
Official
BOOL- Lámpara de pie de cerámica.
BOOL- Ceramic wall lamp.
Sacó las zanahorias y las colocó en un bool.
She fished the carrots out and placed them in a bowl.
BOOL- Lámpara de pie de cerámica.
BOOL- Ceramic floor lamp.
Pueden ser valores de tipo int, double,string, bool o Color.
They can be values of type int, double,string, bool or Color.
BOOL- Lámpara colgante de cerámica.
BOOL- Ceramic wall lamp.
La conversión automática de int i; bool b true; i=b; es imposible en NTL.
Automatic conversion of int i; bool b true; i=b; is impossible in NTL.
BOOL Boolean Valor de verdad verdadero/falso.
BOOL Boolean Truth value true/false.
El evento puede enviar el estado actual como un argumento dinámico tipo bool. Detalles.
The event can send the current state as a bool type dynamic argument. Details.
BOOL- Lámpara de mesa/ lámpara de pie de cerámica.
BOOL- Ceramic table lamp/ floor lamp.
El siguiente paso lógico en los tipos es el conjunto de dos elementos,que corresponde con bool en C++, Bool en Haskell y Boolean en Scala.
The next logical type to see is a set with 2 elements,which corresponds with bool in C++, Bool in Haskell and Boolean in Scala.
BOOL le dice a EMMA cuando usar el tracking IDFA.
BOOL tells to EMMA when to use IDFA tracking.
Por ejemplo, la siguiente instrucción utiliza el operador de condición Bool con la clave aws: SecureTransport para especificar que la solicitud debe utilizar SSL.
For example, the following statement uses the Bool condition operator with the aws: SecureTransport key to specify that the request must use SSL.
BOOL SPOT- Plafón LED de cristal con luz directa.
BOOL SPOT- LED direct light crystal ceiling light.
Existencia: para simplemente verificar que el usuario se autenticó realmente con MFA, compruebe que la clave aws:MultiFactorAuthPresent sea True en una condición Bool.
Existence-To simply verify that the user did authenticate with MFA, check that the aws:MultiFactorAuthPresent key is True in a Bool condition.
El tipo bool sirve para almacenar los valores lógicos true(verdadero) o false(falso) la representacion de los cuales es 1 o 0 respectivamente.
The bool type is intended to store the logical values of true or false, numeric representation of them is 1 or 0, respectively.
Sintácticamente el tipo void es un tipo fundamental igual que el tipo char,uchar, bool, short, ushort, int, uint, color, long, ulong, datetime, float, double y string.
Syntactically the void type is a fundamental type along with types of char,uchar, bool, short, ushort, int, uint, color, long, ulong, datetime, float, double and string.
Ahora se pueden forzar los siguientes tipos para parámetros(tanto coercitiva como estrictamente): cadenas de caracteres( string), números enteros( int), números decimales( float),y booleanos bool.
The following types for parameters can now be enforced(either coercively or strictly): strings( string), integers( int), floating-point numbers( float),and booleans bool.
La versión de… IfExists del operador Bool garantiza que si falta la clave aws: MultiFactorAuthPresent, la condición devuelve el valor true.
The… IfExists version of the Bool operator ensures that if the aws: MultiFactorAuthPresent key is missing,the condition returns true.
Las estructuras pr1 y pr2, de tipo Point, contendrán las posiciones del tablero a intercambiar, y color1 y color2,de tipo bool, indicarán si son blancas o negras.
The structures pr1 and pr2, of Point type, will contain the positions of the board to be exchanged, and color1 and color2,of type bool, will indicate if they are white or black.
Los tipos similares son los siguientes: bool, char, uchar, puesto que estos tres tipos son enteros de un byte; los enteros de dos bytes short y ushort; los enteros de 4 bytes int, uint y color; long, ulong y datetime.
Similar types are: bool, char, uchar, since all the three types are single-byte integers; double-byte integers short and ushort; 4-byte integers int, uint, and color; long, ulong, and datetime.
El interfaz IVariantValue se utiliza para implementar los valores de las propiedades, de manera que se puedan utilizar indiferentemente con cualquiera de los tipos de datos int,double, bool, string o Color.
The IVariantValue interface is used to implement property values so that they can be used indifferently with any one of the following data types: int,double, bool, string or Color.
Valor que el parámetro COOL debe tener porque el aparato está en temporada Verano(Refrigeración) OFF ON OFF bool st40 Activación de entrada digital para la gestión de estados Confort/Economy a distancia.
Value that the COOL parameter must have for the instrument to be in Summer mode(cooling) OFF ON OFF bool st40 Enabling of digital input for management of the Comfort/Economy status from remote.
Puesto que el bool de C++ es definido como tipo aritmético, puede ser implícitamente convertido a los tipos entero o aún a los tipos flotantes, lo que permite las operaciones matemáticas que no fueron pensadas por el usuario.
Because C++ bool is defined as an arithmetic type, it can be implicitly converted to integral or even floating-point types, which allows for mathematical operations that are not intended by the user.
Mientras que la propuesta original especificó que un rvalue del tipo nullptr no debería ser convertible a bool, el grupo de trabajo del núcleo del lenguaje decidió que tal conversión sería deseable, para la consistencia con los tipos punteros regulares.
While the original proposal specified that an rvalue of type nullptr_t should not be convertible to bool, the core language working group decided that such a conversion would be desirable, for consistency with regular pointer types.
El tipo bool puede figurar en vez del tipo char(ambos ocupan 1 byte de la memoria), en vez del tipo int se puede utilizar el tipo color(4 bytes cada uno), y en vez del tipo long se admite el tipo datetime ocupan 8 bytes cada uno.
Instead of the char type, the bool type can be used(both take 1 byte of memory), instead of type int, the color type can be used(4 bytes), instead of the long type, datetime can be used take 8 bytes.
La estructura de los retornos del modelo es como sigue: std:: vector*pResult; template struct CResultSet{ std:: vector* child; int type;// double, string int setType;// single, vector,vector int identity; bool bChild; std:: vector* thisValue;};
The structure of the model returns are as follows: std:: vector*pResult; template struct CResultSet{ std:: vector* child; int type;// double, string int setType;// single, vector,vector int identity; bool bChild; std:: vector* thisValue;};
Los tipos de datos simples,como int o bool, además de los tipos struct, son candidatos a almacenarse en la memoria caché del procesador, a diferencia de las clases, que son objetos que se almacenan como referencias en la memoria RAM normal, cuyo tiempo de acceso es mucho más lento.
Simple data types,such as int or bool, in addition to the struct types, are candidates to be stored in the processor's cache, unlike classes, which are objects that are stored as references in normal RAM, which access time is high in comparison.
Sin embargo, contextos del lenguaje que específicamente requieren valor boleano,(las condiciones de sentencias if y en bucles, tan bien como operandos en operadores lógicos), como en conversiones explícitas ypor lo tanto pueden usar a un operador de conversión bool.
However, language contexts that specifically need a boolean value(the conditions of if-statements and loops, and operands to the logical operators)count as explicit conversions and can thus use a bool conversion operator.
En C: bool is_even(unsigned int n){ if(n== 0) return true; else return is_odd(n- 1);} bool is_odd(unsigned int n){ if(n== 0) return false; else return is_even(n- 1);}¿Esas funciones son basadas en la observación de la pregunta 4 es par?
In C: bool is_even(unsigned int n){ if(n== 0) return true; else return is_odd(n- 1);} bool is_odd(unsigned int n){ if(n== 0) return false; else return is_even(n- 1);} These functions are based on the observation that the question is 4 even? is equivalent to is 3 odd?, which is in turn equivalent to is 2 even?,?
El resto de funciones se implementa en las clases IntFunction, para las funciones que trabajan con enteros, DoubleFunction, para funciones que trabajan con valores double, StrBoolFunction, para funciones con argumentosde tipo string y resultado de tipo bool, StrIntFunction para funciones con argumentos de tipo string que devuelven enteros, y funciones específicas que trabajan con cadenas de texto en las clases StrSubstringFunction, StrConcatFunction y StrReplaceFunction.
The other functions are implemented in the classes IntFunction, the functions working with integers, DoubleFunction, the functions working with double values, StrBoolFunction,the functions with string type arguments and bool type result, StrIntFunction the functions with string arguments that return integers, and specific functions working with strings in the StrSubstringFunction, StrConcatFunction, and StrReplaceFunction classes.
Español
Dansk
Deutsch
Français
हिंदी
Italiano
Nederlands
Português
Русский
Tagalog
عربى
Български
বাংলা
Český
Ελληνικά
Suomi
עִברִית
Hrvatski
Magyar
Bahasa indonesia
日本語
Қазақ
한국어
മലയാളം
मराठी
Bahasa malay
Norsk
Polski
Română
Slovenský
Slovenski
Српски
Svenska
தமிழ்
తెలుగు
ไทย
Turkce
Українська
اردو
Tiếng việt
中文