我对
Ruby的理解是’new’关键字总是与类名组合以创建一个新的类实例.在下面的代码中,发现于
https://gist.github.com/e9c0da1a6e92dd12cbc7,作为一个Ruby编程挑战新手竞赛的解决方案提交,作者使用’new’关键字三次而不实例化一个类.
在一种情况下,new(0,0)被分配给常量CLOSED.在另一种情况下,new(open,close)是函数的返回值.为什么这样?当它以这种方式使用时,“新”的做法是什么?是什么创造的?
class OpenHours attr_reader :open,:close def initialize(open,close) @open,@close = open,close end def duration @duration ||= @open < @close ? @close - @open : 0 end CLOSED = new(0,0) #first new def self.parse(open,close) open = Time.parse(open) close = Time.parse(close) open = TimeUtils::seconds_from_midnight(open) close = TimeUtils::seconds_from_midnight(close) new(open,close) #second new end def offset(seconds) self.class.new([@open,seconds].max,@close) #third new end end