在 Intellij 的 KotlinJS 中使用 pow

Using pow in KotlinJS in Intellij

有一个名为 kotlin.math 的库,其中包含一个方法 pow:

import kotlin.math.pow
val factor = pow(10.0, 2)
print(factor)

结果:

100.0

但是 Intellij 没有注册我导入了 pow 函数,KotlinJS 是否有特殊的 pow 方法?

KotlinJS 中有两个不同版本的 pow。

弃用 kotlin.js.math.pow 定义为:

public fun pow(base: Double, exp: Double): Double

和定义为扩展函数的标准库版本kotlin.math.pow

public actual inline fun Double.pow(n: Int): Double = nativeMath.pow(this, n.toDouble())

因此您的示例必须更改为如下所示:

import kotlin.math.pow
val factor = 10.0.pow(2)
print(factor)