位置:首页 > Java技术 > java.lang > java.lang.StrictMath.pow()方法实例

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 -- 这是指数值。

返回值

此方法返回 a的值.

异常

  • NA

例子

下面的例子显示java.lang.StrictMath.pow()方法的使用。

package com.yiibai;

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