El método Single.IsFinite() se usa para verificar si el valor flotante está fuera de límite o no.
Sintaxis: public static bool IsFinite (valor flotante);
Valor devuelto: este método devuelve verdadero si el valor es finito, de lo contrario, falso .
Los siguientes programas ilustran el uso del método Single.IsFinite() :
Ejemplo 1:
// C# program to demonstrate the // Single.IsFinite() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 float value1 = 1654.268416f; // using IsFinite() method bool value = Single.IsFinite(value1); // Displaying the result if (value) Console.WriteLine("{0} is finite", value1); else Console.WriteLine("{0} is not finite", value1); } }
Producción:
1654.268 is finite
Ejemplo 2:
// C# program to demonstrate the // Single.IsFinite() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 float value1 = (float)Math.Pow(2, 10000000); // using IsFinite() method bool value = Single.IsFinite(value1); // Displaying the result if (value) Console.WriteLine("{0} is finite", value1); else Console.WriteLine("{0} is not finite", value1); } }
Producción:
Infinity is not finite
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA