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
}

输出:

[87, 71, 7, 67, 90, 50, 45, 67, 3, 19]
[63, 24, 35, 17, 37, 25, 15, 10, 76, 88]
randomValues != nextValues is true