1. ホーム
  2. java

[解決済み] XX:MaxDirectMemorySizeの既定値

2022-03-04 10:27:29

質問

XX:MaxDirectMemorySizeのデフォルト値は何ですか?

解決方法を教えてください。

から http://www.docjar.com/html/api/sun/misc/VM.java.html

なるほど。

 163       // A user-settable upper limit on the maximum amount of allocatable direct
 164       // buffer memory.  This value may be changed during VM initialization if
 165       // "java" is launched with "-XX:MaxDirectMemorySize=<size>".
 166       //
 167       // The initial value of this field is arbitrary; during JRE initialization
 168       // it will be reset to the value specified on the command line, if any,
 169       // otherwise to Runtime.getRuntime.maxDirectMemory().
 170       //
 171       private static long directMemory = 64 * 1024 * 1024;

ということで、デフォルトは64メガになるようです。