Size of a byte in memory - Java - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:47:33Zhttp://stackoverflow.com/feeds/question/229886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java11Size of a byte in memory - JavaBen Page2008-10-23T14:16:35Z2009-03-17T12:55:01Z
<p>I have heard mixed opinions over the amount of memory that a byte takes up in a java program.</p>
<p>I am aware you can store no more than +127 in a java byte, and the <a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/datatypes.html" rel="nofollow">documentation</a> says that a byte is only 8 bits but <a href="http://www.jguru.com/faq/view.jsp?EID=13647" rel="nofollow">here</a> I am told that it actually takes up the same amount of memory as an int, and therefore is just a Type that helps in code comprehension and not efficiency. </p>
<p>Can anyone clear this up, and would this be an implementation specific issue?</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229912#2299125Answer by Bill the Lizard for Size of a byte in memory - JavaBill the Lizard2008-10-23T14:21:09Z2008-10-23T14:21:09Z<p>Java is never implementation or platform specific (at least as far as <a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/datatypes.html" rel="nofollow">primitive type sizes</a> are concerned). They primitive types are always guaranteed to stay the same no matter what platform you're on. This differs from (and was considered an improvement on) C and C++, where some of the primitive types were platform specific.</p>
<p>Since it's faster for the underlying operating system to address four (or eight, in a 64-bit system) bytes at a time, the JVM may allocate more bytes to store a primitive byte, but you can still only store values from -128 to 127 in it.</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229917#2299171Answer by Steve McLeod for Size of a byte in memory - JavaSteve McLeod2008-10-23T14:21:56Z2008-10-23T14:21:56Z<p>What you've been told is exactly right. The Java byte code specification only has 4-byte types and 8-byte types. </p>
<p>byte, char, int, short, boolean, float are all stored in 4 bytes each.</p>
<p>double and long are stored in 8 bytes.</p>
<p>However byte code is only half the story. There's also the JVM, which is implementation-specific. There's enough info in Java byte code to determine that a variable was declared as a byte. A JVM implementor <em>may</em> decide to use only a byte, although I think that is highly unlikely.</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229921#2299212Answer by Jon Skeet for Size of a byte in memory - JavaJon Skeet2008-10-23T14:22:24Z2008-10-23T14:22:24Z<p>It depends on how the JVM applies padding etc. An array of bytes will (in any sane system) be packed into 1-byte-per-element, but a class with four byte fields could either be tightly packed or padded onto word boundaries - it's implementation dependent.</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229949#2299491Answer by widgisoft for Size of a byte in memory - Javawidgisoft2008-10-23T14:26:47Z2008-10-23T14:26:47Z<p>You could always use longs and pack the data in yourself to increase efficiency. Then you can always gaurentee you'll be using all 4 bytes.</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229968#2299682Answer by izb for Size of a byte in memory - Javaizb2008-10-23T14:30:40Z2008-10-23T14:30:40Z<p>A revealing exercise is to run <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javap.html" rel="nofollow">javap</a> on some code that does simple things with bytes and ints. You'll see bytecodes that expect int parameters operating on bytes, and bytecodes being inserted to co-erce from one to another.</p>
<p>Note though that arrays of bytes are not stored as arrays of 4-byte values, so a 1024-length byte array will use 1k of memory (Ignoring any overheads).</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/229992#2299921Answer by Mecki for Size of a byte in memory - JavaMecki2008-10-23T14:35:20Z2008-10-23T14:35:20Z<p>Yes, a byte variable is in fact 4 bytes in memory. However this doesn't hold true for arrays. A byte array of 20 bytes is in fact only 20 bytes in memory. That is because the Java Bytecode Language only knows ints and longs as number types (so it must handle all numbers as either type of both, 4 bytes or 8 bytes), but it knows arrays with every possible number size (so short arrays are in fact two bytes per entry and byte arrays are in fact one byte per entry).</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/230063#23006310Answer by Jon Skeet for Size of a byte in memory - JavaJon Skeet2008-10-23T14:57:26Z2008-10-23T14:57:26Z<p>Okay, there's been a lot of discussion and not a lot of code :)</p>
<p>Here's a quick benchmark. It's got the normal caveats when it comes to this kind of thing - testing memory has oddities due to JITting etc, but with suitably large numbers it's useful anyway. It has two types, each with 80 members - LotsOfBytes has 80 bytes, LotsOfInts has 80 ints. We build lots of them, make sure they're not GC'd, and check memory usage:</p>
<pre><code>class LotsOfBytes
{
byte a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, aa, ab, ac, ad, ae, af;
byte b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf;
byte c0, c1, c2, c3, c4, c5, c6, c7, c8, c9, ca, cb, cc, cd, ce, cf;
byte d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, da, db, dc, dd, de, df;
byte e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, ea, eb, ec, ed, ee, ef;
}
class LotsOfInts
{
int a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, aa, ab, ac, ad, ae, af;
int b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf;
int c0, c1, c2, c3, c4, c5, c6, c7, c8, c9, ca, cb, cc, cd, ce, cf;
int d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, da, db, dc, dd, de, df;
int e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, ea, eb, ec, ed, ee, ef;
}
public class Test
{
private static final int SIZE = 1000000;
public static void main(String[] args) throws Exception
{
LotsOfBytes[] first = new LotsOfBytes[SIZE];
LotsOfInts[] second = new LotsOfInts[SIZE];
System.gc();
long startMem = getMemory();
for (int i=0; i < SIZE; i++)
{
first[i] = new LotsOfBytes();
}
System.gc();
long endMem = getMemory();
System.out.println ("Size for LotsOfBytes: " + (endMem-startMem));
System.out.println ("Average size: " + ((endMem-startMem) / ((double)SIZE)));
System.gc();
startMem = getMemory();
for (int i=0; i < SIZE; i++)
{
second[i] = new LotsOfInts();
}
System.gc();
endMem = getMemory();
System.out.println ("Size for LotsOfInts: " + (endMem-startMem));
System.out.println ("Average size: " + ((endMem-startMem) / ((double)SIZE)));
// Make sure nothing gets collected
long total = 0;
for (int i=0; i < SIZE; i++)
{
total += first[i].a0 + second[i].a0;
}
System.out.println(total);
}
private static long getMemory()
{
Runtime runtime = Runtime.getRuntime();
return runtime.totalMemory() - runtime.freeMemory();
}
}
</code></pre>
<p>Output on my box:</p>
<pre><code>Size for LotsOfBytes: 88811688
Average size: 88.811688
Size for LotsOfInts: 327076360
Average size: 327.07636
0
</code></pre>
<p>So obviously there's some overhead - 8 bytes by the looks of it, although somehow only 7 for LotsOfInts (? like I said, there are oddities here) - but the point is that the byte fields appear to be packed in for LotsOfBytes such that it takes (after overhead removal) only a quarter as much memory as LotsOfInts.</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/241302#2413020Answer by kohlerm for Size of a byte in memory - Javakohlerm2008-10-27T20:37:55Z2008-10-27T20:37:55Z<p>byte = 8bit =one byte defined by the Java Spec. </p>
<p>how much memory an byte array needs is <strong>not</strong> defined by the Spec, nor is defined how much a complex objects needs. </p>
<p>For the Sun JVM I documented the rules</p>
<p><a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5163" rel="nofollow">here</a></p>
<p>Regards,</p>
<p><a href="http://kohlerm.blogspot.com/" rel="nofollow">Markus</a></p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/242877#2428770Answer by Dimitris Andreou for Size of a byte in memory - JavaDimitris Andreou2008-10-28T10:57:52Z2008-10-28T10:57:52Z<p>See my MonitoringTools at my site (www.csd.uoc.gr/~andreou)</p>
<pre>
class X {
byte b1, b2, b3...;
}
long memoryUsed = MemoryMeasurer.measure(new X());
</pre>
<p>(It can be used for more complex objects/object graphs too)</p>
<p>In Sun's 1.6 JDK, it seems that a byte indeed takes a single byte (in older versions, int ~ byte in terms of memory). But note that even in older versions, byte[] were also packed to one byte per entry.</p>
<p>Anyway, the point is that there is no need for complex tests like Jon Skeet's above, that only give estimations. We can directly measure the size of an object!</p>
http://stackoverflow.com/questions/229886/size-of-a-byte-in-memory-java/242892#2428920Answer by Dimitris Andreou for Size of a byte in memory - JavaDimitris Andreou2008-10-28T11:02:37Z2008-10-28T11:02:37Z<p>Reading through the above comments, it seems that my conclusion will come as a surprise to many (it is also a surprise to me), so it worths repeating:</p>
<ul>
<li><b>The old size(int) == size(byte) for variables holds no more</b>, at least in Sun's Java 6.</li>
</ul>
<p>Instead, size(byte) == 1 byte (!!)</p>