當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Random ==()用法及代碼示例


Random#==() 是一個 Random 類方法,用於檢查兩個隨機值是否相等。

用法:Random.==()

參數:隨機值

Return: true - 如果隨機值相等,否則返回 false

示例#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


相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Random ==() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。