# 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"
Ruby
输出:
Random== form :true
Ruby
例子 #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"