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 {
|
Total Memory : 5177344
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Get Usage Memory Example View All Comments
Post your Comment