当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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 ==。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。