干货

Ruby Objects Types

2014-04-29  本文已影响0人  hutson

在ruby,几乎所有的对象都是对象。

objects are instances of a class

但是 变量 variables ,不是对象,它只是对象的引用。
variables allow us to easily reference objects in Ruby

在irb展示下这个例子:

a = 100
b = a
b = 100

对象类型有下面几种 :

上一篇下一篇

猜你喜欢

热点阅读