[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

biggest number

Javier Esteve

4/25/2009 10:34:00 AM

I'm learning ruby, and I want to know if it is any way to know the
biggest number to be represented with a specific type of number (Fixnum,
Bignum, Float).

Thank you.
--
Posted via http://www.ruby-....

2 Answers

Charles Oliver Nutter

4/25/2009 11:09:00 AM

0

Javier Esteve wrote:
> I'm learning ruby, and I want to know if it is any way to know the
> biggest number to be represented with a specific type of number (Fixnum,
> Bignum, Float).

Float is a standard 64-bit IEEE floating point value. There are several
constants on the Float class that can tell you whatever you need:

â?? jruby -e "p Float::constants"
["MAX", "MAX_10_EXP", "MANT_DIG", "RADIX", "DIG", "MIN", "ROUNDS",
"MIN_EXP", "EPSILON", "MIN_10_EXP", "MAX_EXP"]

Fixnum has no such constants, but on most implementations (CRuby, JRuby,
Rubinius at least) its max size is dependent on how large its basis
representation is. I believe it can be either "32" or "64" bits on
CRuby, where on JRuby it is always "64" bits:

â?? ruby -e "p (1 << (1.size * 8 - 1)) - 1"
2147483647

â?? ruby -e "p -(1 << (1.size * 8 - 1))"
-2147483648

â?? jruby -e "p (1 << (1.size * 8 - 1)) - 1"
9223372036854775807

â?? jruby -e "p -(1 << (1.size * 8 - 1))"
-9223372036854775808

The loss of one bit of precision on most impls is to emulate CRuby's
implementation of Fixnum as a tagged pointer, where the top bit
indicates whether an object pointer is a real pointer or a Fixnum value).

And Bignum has no min or max size, other than the maximum size of a
byte[] on your system.

- Charlie

Joel VanderWerf

4/25/2009 6:21:00 PM

0

Javier Esteve wrote:
> I'm learning ruby, and I want to know if it is any way to know the
> biggest number to be represented with a specific type of number (Fixnum,
> Bignum, Float).
>
> Thank you.

irb(main):005:0> (2**30).class
=> Bignum
irb(main):006:0> (2**30-1).class
=> Fixnum

irb(main):009:0> RUBY_VERSION
=> "1.8.6"

--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407