C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のDouble.IsPositiveInfinity()メソッド


C#のDouble.IsPositiveInfinity()メソッドは、指定された数値が正の無限大と評価されるかどうかを示す値を返すために使用されます。

構文

構文は次のとおりです-

public static bool IsPositiveInfinity (double val);

上記のvalは、倍精度浮動小数点数です。

例を見てみましょう-

using System;
public class Demo {
   public static void Main() {
      double d = 1.0/0.0;
      Console.WriteLine("Double Value = "+d);
      Console.WriteLine("HashCode of Double Value = "+d.GetHashCode());
      TypeCode type = d.GetTypeCode();
      Console.WriteLine("TypeCode of Double Value = "+type);
      Console.WriteLine("Positive Infinity? = "+Double.IsInfinity(d));
      Console.WriteLine("Check whether the specified value is NaN? = "+Double.IsNaN(d));
      Console.WriteLine("Does the value evaluate to negative infinity? = "+Double.IsNegativeInfinity(d));
      Console.WriteLine("Does the value evaluate to positive infinity? = "+Double.IsPositiveInfinity(d));
   }
}

出力

これにより、次の出力が生成されます-

Double Value = ∞
HashCode of Double Value = 2146435072
TypeCode of Double Value = Double
Positive Infinity? = True
Check whether the specified value is NaN? = False
Does the value evaluate to negative infinity? = False
Does the value evaluate to positive infinity? = True

別の例を見てみましょう-

using System;
public class Demo {
   public static void Main() {
      double d = -50.0/0.0;
      Console.WriteLine("Double Value = "+d);
      Console.WriteLine("HashCode of Double Value = "+d.GetHashCode());
      TypeCode type = d.GetTypeCode();
      Console.WriteLine("TypeCode of Double Value = "+type);
      Console.WriteLine("Positive Infinity? = "+Double.IsInfinity(d));
      Console.WriteLine("Check whether the specified value is NaN? = "+Double.IsNaN(d));
      Console.WriteLine("Does the value evaluate to negative infinity? = "+Double.IsNegativeInfinity(d));
      Console.WriteLine("Does the value evaluate to positive infinity? = "+Double.IsPositiveInfinity(d));
   }
}

出力

これにより、次の出力が生成されます-

Double Value = -∞
HashCode of Double Value = -1048576
TypeCode of Double Value = Double
Positive Infinity? = True
Check whether the specified value is NaN? = False
Does the value evaluate to negative infinity? = True
Does the value evaluate to positive infinity? = False

  1. C#のMath.Log10()メソッド

    C#のMath.Log10()メソッドは、指定された数値の常用対数10に返されます。 構文 public static double Log10 (double val); ここで、Valは対数が必要な数です。 Log10()メソッドは-を返します Valパラメーター 返品 ポジティブ dの基数10の対数。つまり、ログ10dです。 ゼロ NegativeInfinity ネガティブ NaN NaNに等しい NaN PositiveInfinityに等しい PositiveInfinity Math.Log10()メソッドを実装する例を見てみましょう-

  2. C#のMath.IEEERemainder()メソッド

    C#のMath.IEEERemainder()メソッドは、指定された数値を別の指定された数値で除算した結果の余りを返すために使用されます。 構文 public static double IEEERemainder (double dividend, double divisor); Math.IEEERemainder()メソッドを実装する例を見てみましょう- 例 using System; public class Demo {    public static void Main(){       double val1 = 90; &