Random所在位置是kotlin.random.Random,其相关用法介绍如下。

用法:

abstract class Random

由随机数生成器算法实现的抽象类。

伴随对象 Random.DefaultRandom 的默认实例。

要获得随机生成器的种子实例,请使用 Random 函数。

例子:

import kotlin.math.sin
import kotlin.random.Random
import kotlin.test.assertTrue

fun main(args: Array<String>) {
//sampleStart
val randomValues = List(10) { Random.nextInt(0, 100) }
// prints new sequence every time
println(randomValues)

val nextValues = List(10) { Random.nextInt(0, 100) }
println(nextValues)
println("randomValues != nextValues is ${randomValues != nextValues}") // true
//sampleEnd
}

输出:

[38, 65, 4, 87, 97, 72, 21, 71, 6, 4]
[92, 48, 70, 6, 46, 75, 98, 19, 10, 95]
randomValues != nextValues is true