Random.nextBytes
所在位置是kotlin.random.Random.nextBytes
,其相关用法介绍如下。
用法一
用随机字节填充指定字节array 的子范围,从fromIndex(含)开始,到toIndex(不包括)结束。
例子:
import kotlin.math.sin
import kotlin.random.Random
import kotlin.test.assertTrue
fun main(args: Array<String>) {
//sampleStart
val bytes = ByteArray(4)
println(bytes.contentToString()) // [0, 0, 0, 0]
Random.nextBytes(bytes, 1, 3)
// second and third bytes are generated, rest unchanged
println(bytes.contentToString())
Random.nextBytes(bytes)
// all bytes are newly generated
println(bytes.contentToString())
val newBytes = Random.nextBytes(5)
// a new byte array filled with random values
println(newBytes.contentToString())
//sampleEnd
}
输出:
[0, 0, 0, 0] [0, 106, 110, 0] [-74, -76, -54, -100] [-15, 35, -122, -115, -111]
返回array,子范围填充随机字节。
用法二
用随机字节填充指定字节array并返回它。
例子:
import kotlin.math.sin
import kotlin.random.Random
import kotlin.test.assertTrue
fun main(args: Array<String>) {
//sampleStart
val bytes = ByteArray(4)
println(bytes.contentToString()) // [0, 0, 0, 0]
Random.nextBytes(bytes, 1, 3)
// second and third bytes are generated, rest unchanged
println(bytes.contentToString())
Random.nextBytes(bytes)
// all bytes are newly generated
println(bytes.contentToString())
val newBytes = Random.nextBytes(5)
// a new byte array filled with random values
println(newBytes.contentToString())
//sampleEnd
}
输出:
[0, 0, 0, 0] [0, 3, 114, 0] [119, 20, -51, -122] [114, -128, -32, -33, -88]
返回填充随机字节的array。
用法三
创建指定 size 的字节数组,填充随机字节。
例子:
import kotlin.math.sin
import kotlin.random.Random
import kotlin.test.assertTrue
fun main(args: Array<String>) {
//sampleStart
val bytes = ByteArray(4)
println(bytes.contentToString()) // [0, 0, 0, 0]
Random.nextBytes(bytes, 1, 3)
// second and third bytes are generated, rest unchanged
println(bytes.contentToString())
Random.nextBytes(bytes)
// all bytes are newly generated
println(bytes.contentToString())
val newBytes = Random.nextBytes(5)
// a new byte array filled with random values
println(newBytes.contentToString())
//sampleEnd
}
输出:
[0, 0, 0, 0] [0, -32, 0, 0] [56, -66, -94, 122] [73, -28, -40, 119, 49]
相关用法
- Kotlin Random.nextBoolean用法及代码示例
- Kotlin Random.nextBits用法及代码示例
- Kotlin Random.nextInt用法及代码示例
- Kotlin Random.nextDouble用法及代码示例
- Kotlin Random.nextFloat用法及代码示例
- Kotlin Random.nextLong用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Random.<init>用法及代码示例
- Kotlin Random用法及代码示例
- Kotlin Regex.matchAt用法及代码示例
- Kotlin Regex.splitToSequence用法及代码示例
- Kotlin Regex.matchesAt用法及代码示例
- Kotlin Regex.find用法及代码示例
- Kotlin Regex.findAll用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
- Kotlin windowedSequence用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin groupByTo用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.random.Random.nextBytes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。