Random#srand():srand()是一種隨機類方法,它返回係統偽隨機數。
用法:Random.srand()
參數:隨機值
返回:係統偽隨機數。
示例1:
# Ruby code for Random.srand() method
# declaring Random value
date_a = Random.srand()
# new arbitrary random value
puts "Random form : #{date_a}\n\n"
輸出:
Random form : 97145396384347815026726176289224049730
示例2:
# Ruby code for Random.srand() method
# declaring Random value
date_b = Random.srand(12)
# new arbitrary random value
puts "Random form : #{date_b}\n\n"
輸出:
Random form : 275725175971615768898475651769765923352
相關用法
- Ruby Random new()用法及代碼示例
- Scala Random ==()用法及代碼示例
- Ruby Random hex()用法及代碼示例
- Ruby Random urlsafe_base64()用法及代碼示例
- Ruby Random random_bytes()用法及代碼示例
- Ruby Random rand()用法及代碼示例
- Ruby Random uuid()用法及代碼示例
- Ruby Random new_seed()用法及代碼示例
- Ruby Random bytes()用法及代碼示例
- Ruby Random seed()用法及代碼示例
- Ruby Random random_number()用法及代碼示例
- Ruby Random base64()用法及代碼示例
- Ruby Set add?用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Random srand() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。