Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading this book entitled, Cracking the Coding Interview by Laakman. There is this part where she (the author p.g. 202) did:

byte[] bitfield = new byte [0xFFFFFFF/8];//there are 7 F's

She was allocating 4 billion bits. However, isn't 0xFFFFFFF = 2^28-1? Thus, she has only allocated a byte array of 2^28-1/8 bytes, which is not remotely close to 4 billion bits. It is only 2^28-1 bits. My question is- is she wrong or am I doing something wrong? How do we allocate 4 billion bits? I have tried:

byte[] bitfield = new byte[0xfffffff *2];

Although the above causes the jvm to run out of heap space.

While we are at it, what is the best was to express hex values? e.g. 0xffffffff or 0xFFFFFFFF?

share|improve this question
2  
In terms of expressing hex values, I've always found capitals much clearer. – berry120 Aug 4 '11 at 16:31
2  
are you sure there aren't 8 F's? 0xFFFFFFFF (8 F's) gets you to 4 billion – Hristo Aug 4 '11 at 16:33
byte[] bitfield = new byte[0xfffffff *2]; should be about right (depending on your interpretation of "billion"). – Hot Licks Aug 4 '11 at 16:39
1  
@Hristo 0xFFFFFFFF gets you -1. – OckhamsRazor Aug 4 '11 at 16:49

5 Answers

up vote 3 down vote accepted

It's not clear to me why you're multiplying by 2. It's simplest to just take the hex representation of (4 billion / 8) - where by "4 billion" we really mean 0x100000000.

So use 0x100000000 / 8, i.e. 0x2000000:

byte[] array = new byte[0x20000000];

That should be fine if you've given your JVM enough memory on startup, e.g. with -Xmx900M.

Sample code:

public class Test {
    public static void main(String[] args) {
        byte[] bytes = new byte[0x20000000];
    }
}

Run by default:

c:\Users\Jon\Test>java Test
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
        at Test.main(Test.java:3)

Run with a bit more space:

c:\Users\Jon\Test>java -Xmx900M Test
share|improve this answer
The default maximum memory is a portion of the memory. If you have enough memory, you don't need to set the maximum. – Peter Lawrey Aug 4 '11 at 18:02
@Peter: IIRC, it depends on whether it's using the server VM or the client VM. I certainly had to set it on my netbook, as shown - but I have enough memory to run the app. – Jon Skeet Aug 4 '11 at 18:31
My mistake; I forgot server is default on Linux, client the default on windows. I always wondered if this was a Sun bias against Windows. ;) – Peter Lawrey Aug 4 '11 at 18:33
@Peter: I thought the default choice depended not just on OS but on things like the number of processors as well. I wouldn't be surprised if it had changed again for Java 7, too... – Jon Skeet Aug 4 '11 at 18:42
This page oracle.com/technetwork/java/ergo5-140223.html suggests the 32-bit windows version is always client, on the 64-bit JVM, its always server by default. For other 32-bit systems it depends on whether the machine is considered "server class" but doesn't say what that is. – Peter Lawrey Aug 4 '11 at 18:53
show 2 more comments

Being the pedantic, I would say 4 billion is not exactly 2^32 and I would suggest using BitSet which cannot hold this many bits but 2 BitSets can

BitSet[] bitSets = { new BitSet(2 * 1000 * 1000 * 1000), 
                     new BitSet(2 * 1000 * 1000 * 1000) };

If it has to be 2^32 bits or 4 Gb (lowercase b is bits), this is slightly to much for two bitSets.

BitSet[] bitSets = { new BitSet(1 << 28), 
                     new BitSet(1 << 28),
                     new BitSet(1 << 28),
                     new BitSet(1 << 28) };
// set a bit
long bitToSet = 

bitSets[(int) (bitToSet >>> 28)]
       .set((int) (bitToSet % (1 << 28)), value);

// test is set
long bitToTest = 

boolean test = bitSets[(int) (bitToTest >>> 28)]
                     .get((int) (bitToTest % (1 << 28)));

Obviously what ever approach you use you want to wrap the array in a collection which hides the details of how it is implemented.

share|improve this answer

My first trot through the numbers came up with 2,147,483,640 bits -- about two billion.

[Oops -- missed that divide by 8. Now I get 268,435,448 bits.]

[The maximum sized object you can allocate in Java will depend both on your stated/defaulted heap size limit and details of the JVM design. Some will not be able to allocate a single object larger than 16MB, for example, while others may have a limit of 64MB or such.]

share|improve this answer

to get 4 billion bits, you need 500,000,000 (500 million) bytes. This is 488281.25K or ~487 meg. In order to allocate this in memory you will most likely need to adjust the heap size of your JVM upwards.

It seems likely that either the book in question had 8 Fs or there was a typeo.

share|improve this answer
but doesn't 8Fs give -1? – OckhamsRazor Aug 4 '11 at 16:55
not for an unsigned number. – DwB Aug 4 '11 at 17:10

Based on the information posted, I would say you are right. However (considering billion as a short scale billion, 10ˆ9), the way to "allocate 4 billion bits" I can think of is:

byte[] bitfield = new byte [1000 * 1000 * 1000 / 8 * 4];

And the allocated array length would be 500MB (would probably need an extra -Xmx based on your defaults):

bitfield.length

500000000 (base 10)
0x1DCD6500 (base 16)

BTW: I normally express base 16 in caps

On the other side billion is somewhat ambiguous (see short scale vs long scale): Wikipedia Billion Java Primitive Data Types

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.