Java StrictMath pow()方法

java.lang.StrictMath.pow() 方法返回第一个参数提高到第二个参数的幂值。它包括以下情况:

  • 如果第二个参数为正或负零,则返回1.0。
  • 如果第二个参数是1.0,返回与第一个参数相同的值。
  • 如果第二个参数为NaN,返回NaN。
  • 如果第一个参数为NaN,第二个参数是非零,返回NaN。

1 语法

public static double pow(double a, double b)

2 参数

a : 这是基数

b : 这是指数值。

3 返回值

此方法返回 a的值.

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath pow()方法
 */
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

 

热门文章

优秀文章