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


Ruby Range.self ==用法及代碼示例


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

用法

self == other → true or false

返回 true 當且僅當:

  • other 是一個範圍。

  • other.begin == self.begin

  • other.end == self.end

  • other.exclude_end? == self.exclude_end?

否則返回 false

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

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

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

相關: Range#eql?

相關用法


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