📅  最后修改于: 2023-12-03 14:42:52.233000             🧑  作者: Mango
StrictMath类是Java Math类的一个严格精度版本,它提供各种可以应对不同场景精度问题的算术计算方法。其中一个方法是signum(),本文将对此方法做个详细介绍。
public static double signum(double d)
该方法返回指定double值的符号函数(即正负号)。如果参数为NaN,则返回NaN。如果参数为0.0,则返回其相对应的符号即0.0。否则,将返回值为1.0或-1.0的double值,具体结果取决于参数d的符号。
参数|描述
-|-
d
|一个double类型的数值
该方法返回double类型的符号值:如果参数d大于0,则返回1.0;如果参数d小于0,则返回-1.0;如果参数d等于0,则返回0.0;如果参数为NaN,则返回NaN。
double d1 = 7;
double d2 = -7;
double d3 = 0;
double d4 = Double.NaN;
System.out.println(StrictMath.signum(d1)); // 输出1.0
System.out.println(StrictMath.signum(d2)); // 输出-1.0
System.out.println(StrictMath.signum(d3)); // 输出0.0
System.out.println(StrictMath.signum(d4)); // 输出NaN
StrictMath类提供了的符号函数(即正负号)方法signum(),可以快速方便地获得浮点型数值的符号。使用时需清楚参数和返回值的类型,以及一些使用细节,才能发挥方法的作用。在实际的开发中,请根据需要判断是否使用StrictMath类。