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


Ruby Range.eql?用法及代碼示例


本文簡要介紹ruby語言中 Range.eql? 的用法。

用法

eql?(other) → true or false

返回 true 當且僅當:

  • other 是一個範圍。

  • other.begin eql? self.begin

  • other.end eql? self.end

  • other.exclude_end? == self.exclude_end?

否則返回 false

r = (1..5)
r.eql?(1..5)                  # => true
r = Range.new(1, 5)
r.eql?('foo')                 # => false
r.eql?(2..5)                  # => false
r.eql?(1..4)                  # => false
r.eql?(1...5)                 # => false
r.eql?(Range.new(1, 5, true)) # => false

請注意,即使使用相同的參數, == eql? 的返回值也可能不同:

(1..2) == (1..2.0)   # => true
(1..2).eql? (1..2.0) # => false

相關: Range#==

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Range.eql?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。