In this Tutorial we make you a code that helps you in understanding Get Usage Memory.
Get Usage Memory Example
In this Tutorial we make you a code that helps you in understanding Get Usage Memory. The class Memory Usage include the main method, that contain the following method -
!)Runtime.getRuntime( ).total Memory ( ) - This method return you the total amount of memory that your java program allocate inside JVM.
2)Runtime.getRuntime( ).free Memory ( ) - This method return you the total amount of free memory available that your program allocate
The variable usage memory is calculated by subtracting total memory and free memory. Finally the println print the Total, Free and Usage memory.
MemoryUsage.java
public class MemoryUsage {
|
Output :
Total Memory : 5177344
|