Java.lang.StrictMath.pow() 方法
描述
java.lang.StrictMath.pow() 方法返回第一个参数的第二个参数的幂的值。它包括这些情况 −
- 如果第二个参数是正零或负零,则返回 1.0。
- 如果第二个参数为 1.0,则返回与第一个参数相同的值。
- 如果第二个参数是 NaN,则返回 NaN。
- 如果第一个参数为 NaN,第二个参数为非零,则返回 NaN。
声明
以下是 java.lang.StrictMath.pow() 方法的声明。
public static double pow(double a, double b)
参数
a − 这是基数
b − 这是指数值。
返回值
此方法返回值 ab。
异常
NA
示例
下面的例子展示了 java.lang.StrictMath.pow() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 4.5 , d2 = 6.9, d3 = 1; // returns d1 to the power d2 double powValue = StrictMath.pow(d1 , d2); System.out.println(""+ d1 + " to the power of " + d2 + " = " + powValue); // returns d1 to the power d3 powValue = StrictMath.pow(d1 , d3); System.out.println(""+ d1 + " to the power of " + d3 + " = " + powValue); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
4.5 to the power of 6.9 = 32148.916823357664 4.5 to the power of 1.0 = 4.5