当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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- 这是 index 值。

返回值

此方法返回值 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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.StrictMath.pow() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。