// A memory usage contains the following attributes about memory usage: // initSize - represents the initial amount of memory (in bytes) that // the Java virtual machine requests from the operating system // for memory management. The Java virtual machine may request // additional memory from the operating system later when appropriate. // Its value may be undefined. // used - represents the amount of memory currently used (in bytes). // committed - represents the amount of memory (in bytes) that is // guaranteed to be available for use by the Java virtual machine. // The amount of committed memory may change over time (increase // or decrease). It is guaranteed to be greater than or equal // to initSize. // maxSize - represents the maximum amount of memory (in bytes) // that can be used for memory management. The maximum amount of // memory for memory management could be less than the amount of // committed memory. Its value may be undefined.
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.