MemoryUsage
Class MemoryUsage
- java.lang.Object
-
- java.lang.management.MemoryUsage
public class MemoryUsage extends Object
A MemoryUsage
object represents a snapshot of memory usage. Instances of the MemoryUsage
class are usually constructed by methods that are used to obtain memory usage information about individual memory pool of the Java virtual machine or the heap or non-heap memory of the Java virtual machine as a whole.
A MemoryUsage
object contains four values:
init | represents the initial amount of memory (in bytes) that the Java virtual machine requests from the operating system for memory management during startup. The Java virtual machine may request additiona
|