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