Ruby new方法的理解。
之所以喜欢ruby,是因为理解ruby后,用ruby解释所有东西都那么自然。比如别的语言创建对象都是Xxx instance = new Xxx(),不要问为什么,就是要这么写。当然Ruby创建对象是instance = Xxx.new,但是这里,我们可以用ruby的commonsense来解释。
Xxx.new可以看成Xxx执行了一个类方法:new,运行以下代码便知。
module Singletondef self.included(klass)klass.class_eval do(class << self; self; end).class_eval doalias_method :original_new, :newdef new *args, &blk@instance ||= original_new(*args, &blk)endendendendendclass Testinclude Singletonendtst1 = Test.newtst2 = Test.newputs tst1.object_idputs tst2.object_id