當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StrictMath.log10()用法及代碼示例



描述

這個java.lang.StrictMath.log10() 方法返回基數10double 值的對數。它包括一些情況 -

  • 如果參數為 NaN 或小於零,則結果為 NaN。
  • 如果參數為正無窮大,則結果為正無窮大。
  • 如果參數為正零或負零,則結果為負無窮大。
  • 如果參數等於 10n對於整數 n,則結果為 n。

聲明

以下是聲明java.lang.StrictMath.log10()方法

public static double log10(double a)

參數

a——這就是價值。

返回值

此方法返回 a 的以 10 為底的對數。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.log10() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 0.0 , d2 = 1000.0 , d3 = (1.0/0.0), d4 = 1;
   
      // returns natural logarithm (base 10) of a double value.       
      double log10Value = StrictMath.log10(d1); 
      System.out.println("Log " + d1 + " with base 10 = " + log10Value);
        
      // if the argument is equal to 10n for integer n, it returns n.
      log10Value = StrictMath.log10(d2); 
      System.out.println("Log " + d2 + " with base 10 = " + log10Value);

      log10Value = StrictMath.log10(d3); 
      System.out.println("Log " + d3 + " with base 10 = " + log10Value);

      log10Value = StrictMath.log10(d4); 
      System.out.println("Log " + d4 + " with base 10 = " + log10Value);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Log 0.0 with base 10 = -Infinity
Log 1000.0 with base 10 = 3.0
Log Infinity with base 10 = Infinity
Log 1.0 with base 10 = 0.0

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.log10() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。