在Java中,Math.log()
方法用于計(jì)算一個(gè)數(shù)的自然對(duì)數(shù)。它遵循以下規(guī)則處理特殊值:
Math.log()
方法將返回負(fù)無窮大(Double.NEGATIVE_INFINITY
)。Double.POSITIVE_INFINITY
),Math.log()
方法將返回正無窮大(Double.POSITIVE_INFINITY
)。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