Espacios de nombres
Variantes
Acciones

Interfaz de C de límites numéricos

De cppreference.com
< cpp‎ | types
 
 
Biblioteca de servicios
 
Apoyo de tipos
Tipos básicos
Tipos fundamentales
Tipos enteros de anchura fija(C++11)
Límites numéricos
Interfaz de C de límites numéricos
Información de tipo
en tiempo de ejecución
Rasgos de tipos
Categorías de tipos
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Propiedades de tipos
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(hasta C++20)
(C++11)(en desuso en C++20)
(C++11)
Constantes de rasgos de tipos
Metafunciones
(C++17)
Contexto de evaluación constante
Operaciones soportadas
Relaciones y consultas de propiedades
Modificaciones de tipos
Transformaciones de tipos
(C++11)
(C++11)
(C++17)
(C++11)(hasta C++20)(C++17)
 

Véase también la interfaz numeric_limits.

Definido en el archivo de encabezado <cstdint>
PTRDIFF_MIN
(C++11)
valor mínimo del objeto de tipo std::ptrdiff_t
Original:
minimum value of object of std::ptrdiff_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
PTRDIFF_MAX
(C++11)
valor máximo del objeto de tipo std::ptrdiff_t
Original:
maximum value of object of std::ptrdiff_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
SIZE_MAX
(C++11)
valor máximo del objeto de tipo std::size_t
Original:
maximum value of object of std::size_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
SIG_ATOMIC_MIN
(C++11)
valor máximo del objeto de tipo std::sig_atomic_t
Original:
maximum value of object of std::sig_atomic_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
SIG_ATOMIC_MAX
(C++11)
valor máximo del objeto de tipo std::sig_atomic_t
Original:
maximum value of object of std::sig_atomic_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
WCHAR_MIN
(C++11)
valor máximo del objeto de tipo wchar_t
Original:
maximum value of object of wchar_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
WCHAR_MAX
(C++11)
valor máximo del objeto de tipo wchar_t
Original:
maximum value of object of wchar_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
WINT_MIN
(C++11)
valor máximo del objeto de tipo std::wint_t
Original:
maximum value of object of std::wint_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
WINT_MAX
(C++11)
valor máximo del objeto de tipo std::wint_t
Original:
maximum value of object of std::wint_t type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)

[editar]Límites de los tipos enteros

Definido en el archivo de encabezado <climits>
CHAR_BIT
número de bits en el byte
Original:
number of bits in byte
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
MB_LEN_MAX
número máximo de bytes en un carácter multibyte
Original:
maximum number of bytes in a multibyte character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
CHAR_MIN
valor mínimo de char
Original:
minimum value of char
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
CHAR_MAX
valor máximo de char
Original:
maximum value of char
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
SCHAR_MINSHRT_MININT_MINLONG_MINLLONG_MIN
(C++11)
valor mínimo de signedchar, short, int, long y longlong respectivamente
Original:
minimum value of signedchar, short, int, long and longlong respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
SCHAR_MAXSHRT_MAXINT_MAXLONG_MAXLLONG_MAX
(C++11)
valor máximo de signedchar, short, int, long y longlong respectivamente
Original:
maximum value of signedchar, short, int, long and longlong respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
UCHAR_MAXUSHRT_MAXUINT_MAXULONG_MAXULLONG_MAX
(C++11)
valor máximo de unsignedchar, unsignedshort, unsignedint,
unsignedlong y unsignedlonglong respectivamente
Original:
maximum value of unsignedchar, unsignedshort, unsignedint,
unsignedlong and unsignedlonglong respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)

[editar]Límites de los tipos de punto flotante

Definido en el archivo de encabezado <cfloat>
FLT_RADIX
la base (radix entero) utilizado por la representación de los tres tipos de punto flotante
Original:
the radix (integer base) used by the representation of all three floating-point types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
DECIMAL_DIG
(C++11)
número de dígitos decimales que se pueden convertir en longdouble y volver sin perder precisión
Original:
number of decimal digits that can be converted to longdouble and back without losing precision
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MINDBL_MINLDBL_MIN
valor mínimo de float, double y longdouble respectivamente
Original:
minimum value of float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MAXDBL_MAXLDBL_MAX
valor máximo de float, double y longdouble respectivamente
Original:
maximum value of float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_EPSILONDBL_EPSILONLDBL_EPSILON
diferencia entre 1.0 y el siguiente valor representable por float, double y longdouble respectivamente
Original:
difference between 1.0 and the next representable value for float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_DIGDBL_DIGLDBL_DIG
número de dígitos decimales que pueden ser representados sin perder precisión para float, double y longdouble respectivamente
Original:
number of decimal digits that can be represented without losing precision for float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MANT_DIGDBL_MANT_DIGLDBL_MANT_DIG
número de dígitos FLT_RADIX de base que se puede representar sin perder precisión para float, double y longdouble respectivamente
Original:
number of base FLT_RADIX digits that can be represented without losing precision for float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MIN_EXPDBL_MIN_EXPLDBL_MIN_EXP
entero negativo mínimo tal que FLT_RADIX criado por una potencia menor que el número entero es un normalizado float, double y longdouble respectivamente
Original:
minimum negative integer such that FLT_RADIX raised by power one less than that integer is a normalized float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MIN_10_EXPDBL_MIN_10_EXPLDBL_MIN_10_EXP
entero negativo mínimo tal que 10 criado por una potencia menor que el número entero es un normalizado float, double y longdouble respectivamente
Original:
minimum negative integer such that 10 raised by power one less than that integer is a normalized float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MAX_EXPDBL_MAX_EXPLDBL_MAX_EXP
entero máximo positivo tal que FLT_RADIX criado por una potencia más que eso es un número entero normalizado float, double y longdouble respectivamente
Original:
maximum positive integer such that FLT_RADIX raised by power one more than that integer is a normalized float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
FLT_MAX_10_EXPDBL_MAX_10_EXPLDBL_MAX_10_EXP
entero máximo positivo tal que 10 criado por una potencia más que eso es un número entero normalizado float, double y longdouble respectivamente
Original:
maximum positive integer such that 10 raised by power one more than that integer is a normalized float, double and longdouble respectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
por defecto el modo de redondeo de punto flotante aritmética
Original:
default rounding mode of floating-point arithmetics
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
especifica en qué precisión todas las operaciones aritméticas se realizan
Original:
specifies in what precision all arithmetic operations are done
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante de macro)
close