2008-02-01から1ヶ月間の記事一覧
ダメな例 module Foo def bar(x) puts "hogehoge" end end Foo::bar(x) # undefined method `bar' for Foo:Module (NoMethodError) 良い例 module Foo def self.bar(x) puts "hogehoge" end end Foo::bar(x) # hogehoge よく考えたら分かるけど、ついついや…
ダメな例 module Foo def bar(x) puts "hogehoge" end end Foo::bar(x) # undefined method `bar' for Foo:Module (NoMethodError) 良い例 module Foo def self.bar(x) puts "hogehoge" end end Foo::bar(x) # hogehoge よく考えたら分かるけど、ついついや…