tags:

views:

46

answers:

1

One would think it would be easy to find a table that lists the default maximum heap sizes for the different JVM versions...but a quick search didn't find such a thing.

So, what are the default maximum heap sizes for the various Sun JVM's?

+1  A: 

Jared, according to Java 1.5 documentation, the default max size is 64MB.

Take a look at -Xmsn and -Xmxn non-standard options.

nandokakimoto