我想盡量保持我的類封裝。任何我不應該使用這種發送方法的理由?任何我不應該用這樣的理由發送?
class MyClass
def self.join_two_strings(first, second)
new.send(:join_two_strings, first, second)
end
def join_two_strings(first, second)
first + second
end
private :join_two_strings
end
可讀性。我發現MyClass.join_two_methods比MyClass.new.join_two_methods – stuartrexking 2013-04-30 05:52:07