Why is Java's boolean primitive size not defined?

JavaBoolean

Java Problem Overview


The Java Virtual Machine Specification says that there is limited support for boolean primitive types.

> There are no Java virtual machine instructions solely dedicated to operations on boolean values. Instead, expressions in the Java programming language that operate on boolean values are compiled to use values of the Java virtual machine int data type.

The above implies (although I may have misinterpreted it) that the int data type is used when operating on booleans, but this is a 32 bit memory construct. Given that a boolean only represents 1 bit of information:

  • Why is a byte, or short, type not used as the proxy for a boolean instead of int?
  • For any given JVM what's the most reliable way of finding out exactly how much memory is used to store a boolean type?

Java Solutions


Solution 1 - Java

Short answer: yes, boolean values are manipulated as 32-bit entities, but arrays of booleans use 1 byte per element.

Longer answer: the JVM uses a 32-bit stack cell, used to hold local variables, method arguments, and expression values. Primitives that are smaller than 1 cell are padded out, primitives larger than 32 bits (long and double) take 2 cells. This technique minimizes the number of opcodes, but does have some peculiar side-effects (such as the need to mask bytes).

Primitives stored in arrays may use less than 32 bits, and there are different opcodes to load and store primitive values from an array. Boolean and byte values both use the baload and bastore opcodes, which implies that boolean arrays take 1 byte per element.

As far as in-memory object layout goes, this is covered under the "private implementation" rules, it can be 1 bit, 1 byte, or as another poster noted, aligned to a 64-bit double-word boundary. Most likely, it takes the basic word size of the underlying hardware (32 or 64 bits).


As far as minimizing the amount of space that booleans use: it really isn't an issue for most applications. Stack frames (holding local variables and method arguments) aren't very large, and in the big scheme a discrete boolean in an object isn't that large either. If you have lots of objects with lots of booleans, then you can use bit-fields that are managed via your getters and setters. However, you'll pay a penalty in CPU time that is probably bigger than the penalty in memory.

Solution 2 - Java

A single boolean somewhere in the inheritance hierarchy can use up to 8 bytes! This is due to padding. More details can be found in How much memory is used by my Java object?:

> Coming back to the question of how > much a boolean consumes, yes it does > consume at least one byte, but due to > alignment rules it may consume much > more. IMHO it is more interesting to > know that a boolean[] will consume one > byte per entry and not one bit,plus > some overhead due to alignment and for > the size field of the array. There are > graph algorithms where large fields of > bits are useful, and you need to be > aware that, if you use a boolean[] you > need almost exactly 8 times more > memory than really needed (1 byte > versus 1 bit).

Solution 3 - Java

The 5th Edition of Java in a Nutshell (O'Reilly) says a boolean primitive type is 1 byte. That could be wrong, based on what the examination of the heap is showing. I wonder if most JVMs have issues with allocating less than a byte for variables.

Solution 4 - Java

The boolean mapping was done with a 32bit CPU in mind. The int value has 32 bits so it can be processed in one operation.

Here's a solution from Peter Norvig's Java IAQ: Infrequently Answered Questions to measure the size (with some imprecision):

static Runtime runtime = Runtime.getRuntime();
...
long start, end;
Object obj;
runtime.gc();
start = runtime.freememory();
obj = new Object(); // Or whatever you want to look at
end =  runtime.freememory();
System.out.println("That took " + (start-end) + " bytes.");

Solution 5 - Java

CPUs operate on a specific datatype length. In case of 32bit CPUs they are 32 bits long and therefore what you call 'int' in Java. Everything below or above that must be filled or splitted to this length before the CPU can process it. This doesn't take much time, but if you need 2 CPU cycles instead of 1 for basic operations, this means doubled costs/time.

This spec is dedicated for 32bit CPUs so that they can process booleans with their native datatype.

You can only have one here: speed or memory - SUN decided for speed.

Solution 6 - Java

We can't tell the exact size of boolean datatype. It's virtual machine dependent or varies from one operating system to other.

Solution 7 - Java

Why not make one .java file like this:

Empty.java

class Empty{
}

and one class like this:

NotEmpty.java

class NotEmpty{
   boolean b;
}

Compile them both and compare the .class files with a hex editor.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoelView Question on Stackoverflow
Solution 1 - JavakdgregoryView Answer on Stackoverflow
Solution 2 - JavaakuhnView Answer on Stackoverflow
Solution 3 - JavaMatthew FlynnView Answer on Stackoverflow
Solution 4 - JavaThomas JungView Answer on Stackoverflow
Solution 5 - JavaHardcodedView Answer on Stackoverflow
Solution 6 - JavaSiva Sanjay AcchanaView Answer on Stackoverflow
Solution 7 - JavamringView Answer on Stackoverflow