开发者

Ruby: type() global method

I'm just curious what the type() global method is.

I used it

a = 1
puts type(a)

and just go开发者_开发知识库t "wrong number of arguments (1 for 0)".


It’s a deprecated equivalent of class, and it’s gone in 1.9.

>> send :class
=> Object
>> 1.type
(irb):5: warning: Object#type is deprecated; use Object#class
=> Fixnum


Deprecated synonym for Object#class.

http://apidock.com/ruby/Object/type

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜