Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A question in java.lang.Integer internal code

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?

like image 381
Muhammad Hewedy Avatar asked Dec 17 '22 01:12

Muhammad Hewedy


2 Answers

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.

like image 147
Tom Hawtin - tackline Avatar answered Jan 02 '23 15:01

Tom Hawtin - tackline


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

like image 20
Michael Borgwardt Avatar answered Jan 02 '23 13:01

Michael Borgwardt