略過內容 略過搜尋
方法
D

執行個體公開方法

duplicable?()

方法不可複製

method(:puts).duplicable? # => false
method(:puts).dup         # => TypeError: allocator undefined for Method
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 44
def duplicable?
  false
end