tags:

views:

71

answers:

3

Hi folks,

While looking in the code of the method:

Integer.toHexString

I found the following code :

public static String toHexString(int i) {
    return toUnsignedString(i, 4);
}

private static String toUnsignedString(int i, int shift) {
    char[] buf = new char[32];
    int charPos = 32;
    int radix = 1 << shift;
    int mask = radix - 1;
    do {
        buf[--charPos] = digits[i & mask];
        i >>>= shift;
    } while (i != 0);

    return new String(buf, charPos, (32 - charPos));
}

The question is, in toUnsignedString, why we create a char arr of 32 chars?

+9  A: 

32 characters is how much you need to represent an int in binary (base-2, shift of 1, used by toBinaryString).

It could be sized exactly, but I guess it has never made business sense to attempt that optimisation.

Tom Hawtin - tackline
aha, thanks, I forget it.
Mohammed
+2  A: 

Because that method is also called by toBinaryString(), and an int is up to 32 digits in binary.

Michael Borgwardt
aha, thanks, I forget it.
Mohammed
+1  A: 

Because the max value for an int in Java is : 2^31 - 1

vinaynag
aha, thanks, I forget it. It seemed to be very dump Question.Thanks all guyz.
Mohammed