Java Math exp() 方法
示例
返回 e 的不同数字次方
System.out.println(Math.exp(0));
System.out.println(Math.exp(1));
System.out.println(Math.exp(10));
System.out.println(Math.exp(4.8));
System.out.println(Math.exp(Math.E));
定义和用法
The exp()
方法返回 e 的数字次方 (ex).
e 是自然对数系统的底数(大约为 2.718282)。在 Java 中,e 的值可用作常量 Math.E.
语法
public static double exp(double number)
参数值
参数 | 描述 |
---|---|
number | 必需。e 的指数。 |
技术细节
返回值 | A double value representing the result of e to the power of a number. |
---|---|
Java 版本 | 任何 |
❮ Math 方法