本文簡要介紹ruby語言中 Random.srand
的用法。
用法
srand(number = Random.new_seed) → old_seed
使用 number
為係統偽隨機數生成器播種。返回之前的種子值。
如果省略number
,則使用操作係統提供的熵源(如果可用)(Unix 係統上的 /dev/urandom 或 Windows 上的 RSA 加密提供程序)為生成器播種,然後結合時間,進程id 和序列號。
srand 可用於確保程序的不同運行之間的偽隨機數的可重複序列。通過將種子設置為已知值,可以使程序在測試期間具有確定性。
srand 1234 # => 268519324636777531569100071560086917274
[ rand, rand ] # => [0.1915194503788923, 0.6221087710398319]
[ rand(10), rand(1000) ] # => [4, 664]
srand 1234 # => 1234
[ rand, rand ] # => [0.1915194503788923, 0.6221087710398319]
相關用法
- Ruby Random.seed用法及代碼示例
- Ruby Random.bytes用法及代碼示例
- Ruby Random.urandom用法及代碼示例
- Ruby Random.random_bytes用法及代碼示例
- Ruby Random.new_seed用法及代碼示例
- Ruby Random.add用法及代碼示例
- Ruby Random.rand用法及代碼示例
- Ruby Random.prng1 ==用法及代碼示例
- Ruby Random hex()用法及代碼示例
- Ruby Random random_number()用法及代碼示例
- Ruby Random new_seed()用法及代碼示例
- Ruby Random bytes()用法及代碼示例
- Ruby Random base64()用法及代碼示例
- Ruby Random urlsafe_base64()用法及代碼示例
- Ruby Random srand()用法及代碼示例
- Ruby Random random_bytes()用法及代碼示例
- Ruby Random rand()用法及代碼示例
- Ruby Random seed()用法及代碼示例
- Ruby Random new()用法及代碼示例
- Ruby Random uuid()用法及代碼示例
- Ruby Range.end用法及代碼示例
- Ruby Range new()用法及代碼示例
- Ruby Range.size用法及代碼示例
- Ruby Range last()用法及代碼示例
- Ruby Range.last用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Random.srand。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。