ruby – “def @”和“def”是什么意思?

前端之家收集整理的这篇文章主要介绍了ruby – “def @”和“def”是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这个 Haskell-like comprehensions implementation in Ruby中有一些我从未在Ruby中看到的代码
class Array
  def +@
    # implementation
  end

  def -@
    # implementation
  end
end

def @和def – @是什么意思?在哪里找到(半)官方信息?

解决方法

它们是一元和方法.当你写 – 对象或对象时,它们被调用.例如,语法x被替换为x. @.

考虑这个:

class Foo
  def +(other_foo)
    puts 'binary +'
  end

  def +@
    puts 'unary +'
  end
end

f = Foo.new
g = Foo.new

+ f   
# unary +

f + g 
# binary +

f + (+ g) 
# unary +
# binary +

另一个比较少的例子:

class Array
  def -@
    map(&:-@)
  end
end

- [1,2,-3]
# => [-1,-2,3]

他们被提到here,还有一篇关于如何定义它们的文章here.

原文链接:https://www.f2er.com/ruby/272995.html

猜你在找的Ruby相关文章