此方法在java.lang包中可用。
此方法用于查找方法中给定参数的立方根。
在此方法中,cbrt代表多维数据集根。
这是一个静态方法,因此也可以使用类名访问此方法。
此方法的返回类型为double,这意味着它返回给定参数的多维数据集根,该参数为double数据类型。
在这种方法中,我们仅将一个参数作为参数传递给Math类的方法,并且仅传递必须为其找到立方根的参数。
在此方法中,如果传递正参数,则返回给定参数的立方根(正);否则,传递负参数,使它返回给定参数的立方根(负)。
此方法不会引发任何异常。
语法:
public static double cbrt(double d){ }
参数:
double d-一个双精度值,将找到其立方根。
注意:
如果我们传递“ NaN”,则返回“ NaN”。
如果我们传递零(-0或0),它将返回相同的值。
如果我们传递一个无穷大,它将返回相同的值,即无穷大。
返回值:
此方法的返回类型为double,它返回给定值的立方根。
//Java程序演示cbrt(double d)的示例 //数学课的方法 class CbrtMethod { public static void main(String[] args) { //在这里,我们声明了几个变量 double d1 = -0.0; double d2 = 0.0; double d3 = -7.0 / 0.0; double d4 = 7.0 / 0.0; double d5 = 1000.0; double d6 = -1000.0; //显示d1,d2,d3,d4,d5和d6的先前值 System.out.println("Old value of d1 before implementation is :" + d1); System.out.println("Old value of d2 before implementation is :" + d2); System.out.println("Old value of d3 before implementation is :" + d3); System.out.println("Old value of d4 before implementation is :" + d4); System.out.println("Old value of d5 before implementation is :" + d5); System.out.println("Old value of d6 before implementation is :" + d6); //在这里,我们将得到(-0.0),因为我们正在传递参数 //(-0.0),所以多维数据集根相同 System.out.println("New value of d1 after implementation is :" + Math.cbrt(d1)); //在这里,我们得到(0.0),因为我们正在传递参数 //(0.0),所以立方根相同 System.out.println("New value of d2 after implementation is :" + Math.cbrt(d2)); //在这里,我们将获得(-Infinity),因为我们正在传递参数 //(-7.0 / 0.0),所以多维数据集的根是(-Infinity) System.out.println("New value of d3 after implementation is :" + Math.cbrt(d3)); //在这里,我们将获得(Infinity),因为我们正在传递参数 //(7.0 / 0.0),所以多维数据集的根是(Infinity) System.out.println("New value of d4 after implementation is :" + Math.cbrt(d4)); //在这里,我们得到(10.0),因为我们正在传递参数 //(1000.0),因此多维数据集根为10.0- System.out.println("New value of d5 after implementation is :" + Math.cbrt(d5)); //在这里,我们将得到(-10.0),因为我们正在传递参数 //(-1000.0),所以立方根是(-10.0) System.out.println("New value of d6 after implementation is :" + Math.cbrt(d6)); } }
输出结果
E:\Programs>javac CbrtMethod.java E:\Programs>java CbrtMethod Old value of d1 before implementation is :-0.0 Old value of d2 before implementation is :0.0 Old value of d3 before implementation is :-Infinity Old value of d4 before implementation is :Infinity Old value of d5 before implementation is :1000.0 Old value of d6 before implementation is :-1000.0 New value of d1 after implementation is :-0.0 New value of d2 after implementation is :0.0 New value of d3 after implementation is :-Infinity New value of d4 after implementation is :Infinity New value of d5 after implementation is :10.0 New value of d6 after implementation is :-10.0