Límites flotantesFloating Limits
Específicos de MicrosoftMicrosoft Specific
En la tabla siguiente se hace una lista de los límites de los valores de las constantes de punto flotante.The following table lists the limits on the values of floating-point constants. Estos límites también se definen en el archivo de encabezado estándar <float.h> .These limits are also defined in the standard header file <float.h>.
Límites en constantes de punto flotanteLimits on Floating-Point Constants
ConstanteConstant | SignificadoMeaning | ValorValue |
---|---|---|
FLT_DIG DBL_DIG LDBL_DIG |
Número de dígitos, q, tal que un número de punto flotante con q dígitos decimales se puede redondear en una representación de punto flotante y se puede restablecer sin pérdida de precisión.Number of digits, q, such that a floating-point number with q decimal digits can be rounded into a floating-point representation and back without loss of precision. | 66 1515 1515 |
FLT_EPSILON DBL_EPSILON LDBL_EPSILON |
Número positivo menor x, tal que x + 1,0 no es igual a 1,0.Smallest positive number x, such that x + 1.0 is not equal to 1.0. | 1.192092896e-07F1.192092896e-07F 2.2204460492503131e-0162.2204460492503131e-016 2.2204460492503131e-0162.2204460492503131e-016 |
FLT_GUARD |
00 | |
FLT_MANT_DIG DBL_MANT_DIG LDBL_MANT_DIG |
Número de dígitos en la base especificada por FLT_RADIX en el significado de punto flotante.Number of digits in the radix specified by FLT_RADIX in the floating-point significand. La base es 2; por lo tanto, estos valores especifican bits.The radix is 2; hence these values specify bits. |
2424 5353 5353 |
FLT_MAX DBL_MAX LDBL_MAX |
Número de punto flotante máximo que se va a representar.Maximum representable floating-point number. | 3.402823466e+38F3.402823466e+38F 1.7976931348623158e+3081.7976931348623158e+308 1.7976931348623158e+3081.7976931348623158e+308 |
FLT_MAX_10_EXP DBL_MAX_10_EXP LDBL_MAX_10_EXP |
Entero máximo tal que 10 elevado a dicho número es un número de punto flotante que se pueda representar.Maximum integer such that 10 raised to that number is a representable floating-point number. | 3838 308308 308308 |
FLT_MAX_EXP DBL_MAX_EXP LDBL_MAX_EXP |
Entero máximo tal que FLT_RADIX se eleva a ese número es un número de punto flotante que se pueda representar.Maximum integer such that FLT_RADIX raised to that number is a representable floating- point number. |
128128 10241024 10241024 |
FLT_MIN DBL_MIN LDBL_MIN |
Valor positivo mínimo.Minimum positive value. | 1.175494351e-38F1.175494351e-38F 2.2250738585072014e-3082.2250738585072014e-308 2.2250738585072014e-3082.2250738585072014e-308 |
FLT_MIN_10_EXP DBL_MIN_10_EXP LDBL_MIN_10_EXP |
Entero negativo mínimo tal que 10 elevado a dicho número es un número de punto flotante que se pueda representar.Minimum negative integer such that 10 raised to that number is a representable floating- point number. | -37-37 -307-307 -307-307 |
FLT_MIN_EXP DBL_MIN_EXP LDBL_MIN_EXP |
Entero negativo mínimo tal que FLT_RADIX se eleva a ese número es un número de punto flotante que se pueda representar.Minimum negative integer such that FLT_RADIX raised to that number is a representable floating-point number. |
-125-125 -1021-1021 -1021-1021 |
FLT_NORMALIZE |
00 | |
FLT_RADIX _DBL_RADIX _LDBL_RADIX |
Base de representación de exponente.Radix of exponent representation. | 22 22 22 |
FLT_ROUNDS _DBL_ROUNDS _LDBL_ROUNDS |
Modo de redondeo para la adición de punto flotante.Rounding mode for floating-point addition. | 1 (próximo)1 (near) 1 (próximo)1 (near) 1 (próximo)1 (near) |
Nota
La información de la tabla puede ser diferente en versiones futuras del producto.The information in the table may differ in future versions of the product.
FIN de Específicos de MicrosoftEND Microsoft Specific