本文簡要介紹ruby語言中 Kernel.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 Kernel.set_trace_func用法及代碼示例
- Ruby Kernel.select用法及代碼示例
- Ruby Kernel.syscall用法及代碼示例
- Ruby Kernel.sprintf用法及代碼示例
- Ruby Kernel.system用法及代碼示例
- Ruby Kernel.sleep用法及代碼示例
- Ruby Kernel.spawn用法及代碼示例
- Ruby Kernel.local_variables用法及代碼示例
- Ruby Kernel.Integer用法及代碼示例
- Ruby Kernel.binding用法及代碼示例
- Ruby Kernel.frozen?用法及代碼示例
- Ruby Kernel.`cmd`用法及代碼示例
- Ruby Kernel.autoload用法及代碼示例
- Ruby Kernel.loop用法及代碼示例
- Ruby Kernel.Hash用法及代碼示例
- Ruby Kernel.caller用法及代碼示例
- Ruby Kernel.exit!用法及代碼示例
- Ruby Kernel.trap用法及代碼示例
- Ruby Kernel.String用法及代碼示例
- Ruby Kernel.then用法及代碼示例
- Ruby Kernel.Pathname用法及代碼示例
- Ruby Kernel.yield_self用法及代碼示例
- Ruby Kernel.BigDecimal用法及代碼示例
- Ruby Kernel.raise用法及代碼示例
- Ruby Kernel.test用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Kernel.srand。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。