📜  红宝石 |随机 ==()函数

📅  最后修改于: 2022-05-13 01:54:24.242000             🧑  作者: Mango

红宝石 |随机 ==()函数

Random#==()是一个 Random 类方法,用于检查两个随机值是否相等。

示例 #1:

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

输出 :

Random == form : true

示例 #2:

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

输出 :

Random == form : false