当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Random new()用法及代码示例


Random#new():new()是一种随机类方法,它使用种子来设置初始状态来创建新的PRNG。

用法:Random.new()

参数:随机值


返回:使用种子设置初始状态的新PRNG。

示例1:

# Ruby code for Random.new() method 
  
# declaring Random value 
date_a = Random.new() 
  
# new arbitrary random state 
puts "Random new form : #{date_a}\n\n"

输出:

Random new form : #

示例2:

# Ruby code for Random.new() method 
  
# declaring Random value 
date_b = Random.new() 
  
# new arbitrary random state 
puts "Random new form : #{date_b}\n\n"

输出:

Random new form : #



相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Random new() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。