BigInteger.Log10(BigInteger) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定数字以 10 为底的对数。
public:
static double Log10(System::Numerics::BigInteger value);
public static double Log10 (System.Numerics.BigInteger value);
static member Log10 : System.Numerics.BigInteger -> double
Public Shared Function Log10 (value As BigInteger) As Double
参数
- value
- BigInteger
要查找其对数的数字。
返回
value
的以 10 为底的对数,如“备注”部分中的表所示。
例外
value
的以 10 为底的对数超出了 Double 数据类型的范围。
注解
参数 value
指定为基数 10。
方法的精确返回值取决于 的 value
符号,如下表所示。
值参数的符号 | 返回值 |
---|---|
正 | 的 base 10 日志 value ;即 log10value 。 |
零 | Double.NegativeInfinity. |
负数 | Double.NaN. |
若要计算值的自然对数 BigInteger ,请调用 BigInteger.Log(BigInteger) 方法。 若要计算另一个基数的对数,请调用 BigInteger.Log(BigInteger, Double) 方法。
此方法对应于 Math.Log10 基元数值类型的 方法。