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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。