java math.log如何處理特殊值

小樊
92
2024-06-25 18:20:32
欄目: 編程語言

在Java中,Math.log()方法用于計(jì)算一個(gè)數(shù)的自然對(duì)數(shù)。它遵循以下規(guī)則處理特殊值:

  1. 如果參數(shù)是負(fù)數(shù)或零,Math.log()方法將返回負(fù)無窮大(Double.NEGATIVE_INFINITY)。
  2. 如果參數(shù)是正無窮大(Double.POSITIVE_INFINITY),Math.log()方法將返回正無窮大(Double.POSITIVE_INFINITY)。
  3. 如果參數(shù)是NaN(Not-a-Number),Math.log()方法將返回NaN。

例如:

System.out.println(Math.log(-1)); // 輸出 -Infinity
System.out.println(Math.log(0)); // 輸出 -Infinity
System.out.println(Math.log(Double.POSITIVE_INFINITY)); // 輸出 Infinity
System.out.println(Math.log(Double.NaN)); // 輸出 NaN

0