El método Double.IsFinite() se usa para verificar si el valor doble está fuera de límite o no.
Sintaxis: public static bool IsFinite (doble valor);
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 Double.IsFinite() :
Ejemplo 1:
// C# program to demonstrate the // Double.IsFinite() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 double value1 = 10d; // using IsFinite() method bool value = Double.IsFinite(value1); // Displaying the result if (value) Console.WriteLine("{0} is finite", value1); else Console.WriteLine("{0} is not finite", value1); } }
Producción:
10 is finite
Ejemplo 2:
// C# program to demonstrate the // Double.IsFinite() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 double value1 = Math.Pow(2, 1000000000000); // using IsFinite() method bool value = Double.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
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA