| re: What does numeric_limits<>::digits10 represent?
"Steve" <root@127.0.0.1> wrote in message
news:BE343B2E.C4B1D%root@127.0.0.1...[color=blue]
> I don't get it.
>
> In Codewarrior for Mac OS 9.4, numeric_limits<unsigned char>::digits10 ==[/color]
2.[color=blue]
>
> Unless I don't understand it properly (most likely!) I thought digits10[/color]
was[color=blue]
> supposed to represent the number of digits (in base 10) a value of this[/color]
type[color=blue]
> needs. In that case, shouldn't digits10 be 3 for an unsigned char (i.e.[/color]
255[color=blue]
> can be represented using 3 base 10 digits?), 5 for a 16-bit unsigned[/color]
short,[color=blue]
> 10 for 32-bit unsigned int, etc.??
>[/color]
I am just guessing here, but 2 10 base digits would guarantee me 0..99,
while 3 10 base digits would guarantee me 0..999.
[color=blue]
> Whereas, in Codewarrior they are 2, 4 and 9 respectively.
>
> The C++ spec (14882), section 18.2.1.2 para 9 states that its 'Number of
> base 10 digits that can be represented without change'
>
> I don't think I understand the whole sentence then, but mostly the '...
> without change' bit.
>
> Would somebody be kind enough to elaborate please.
>
> Thanks very much.
>
> --
> Regards,
> Steve.
>[/color] |