Posted on 2007-10-31 11:33
dennis 阅读(336)
评论(0) 编辑 收藏 所属分类:
动态语言
在Ruby中,无论类或者对象,都有一个singlton类(或者称为metaclass),有兴趣的话读读过去写的这篇《
Ruby的对象模型》。当我们获取某个类或者对象的class属性时,其实会忽略c ruby层次上的singleton类,那么我们如何得到singleton类呢?比较有趣的做法:
singletonclass=class<<Test;self;end
对于对象,也是如此:
test=Test.new
metaclass=class<<test;self;end