可能性の重複は何ですか:
Why isn't the eigenclass equivalent to self.class, when it looks so similar?
class << self idiom in Rubyクラス<<ルビーで自己
は、私は、このクラスがあります。
class Player < ActiveRecord::Base
before_save :set_slug
def remains
((end_date - Date.today) + 1).to_i
end
def self.url
"Our_link_#{slug}"
end
class << self
def load_track_lists
#do somthing
end
end
end
を、私はクラスを理解しますインスタンスメソッドではなく、
class << self
def load_track_lists
#do somthing
end
end
は本当に混乱します。それは何ですか、それは以前の2つの方法とどのように違うのですか?
@lucapette:それは複製のように見えますか?それらは似ていて関連していますが、重複はありません。 –