我刚开始玩JRuby。这是我的第一篇ruby帖子。我很难理解Ruby中的类与对象。这并不意味着喜欢什么类&;其他面向对象语言中的对象。例如
Class.is_a? Object
returns true and
Object.is_a? Object
也。
所以阶级&;对象既是对象
又来了一个
Class.is_a? Class
returns true and
Object.is_a? Class
也。
等等,我还没做完
Object.instance_of? Class
Class.instance_of? Class
两者都是真的
Object.instance_of? Object
Class.instance_of? Object
两者都是假的。对,任何事物都不可能是对象的实例。
和
Class.kind_of? Class
Object.kind_of? Class
两者都是真的
Class.kind_of? Object
Object.kind_of? Object
两者都是真的
所以两者完全相同,那么为什么我们都有呢。?
经过更多的挖掘,我编写了这个简单的方法来返回两者都支持的方法列表
irb(main):054:0> def print_methods(obj)
irb(main):055:1> obj.methods.each do |mm|
irb(main):056:2* puts mm
irb(main):057:2> end
irb(main):058:1> end
print_methods(Object)和print_method(Class)之间的方法差异仅为
Nesting
如果嵌套意味着继承,那么Object是否类似于密封类??
有人能告诉我这是怎么回事吗?
更新:致Edds评论
有趣的是,我在中的方法列表中看到了很多差异
c=Class.new
print_methods(c)
&;
o=Object.new
print_methods(o)
Now I understand Instance of a class is really an class instance (和this class instance is actually a Object) not an object instance. 和even this instance allow me to span another instances
xx = c.new //works - c is an Object / and xx is a instance of an Object c
yy = o.new //nope - o is already a instance of an Object, so it cannot be instantiated again
最后,Object实际上是一个类的实例。因为
xx.is_a? Class
是假的,但是
xx.is_a? Object
返回true
我说得对吗??