数値リテラルのクラス
公開日:
:
最終更新日:2014/02/04
Ruby
記事内に広告を含む場合があります。記事内で紹介する商品を購入することで、当サイトに売り上げの一部が還元されることがあります。
>> 1.1.class
=> Float
>> Float.superclass
=> Numeric
>> 1.class
=> Fixnum
>> Fixnum.superclass
=> Integer
>> 1111111111111111111111111.class
=> Bignum
>> Bignum.superclass
=> Integer
>> Integer.superclass
=> Numeric
>> Numeric.superclass
=> Object
>> Object.superclass
=> nil
関連記事
- PREV
- 関数からハッシュを返してみる
- NEXT
- 各種リテラルの型などについて実験