code for fetting Max Memory in java




public class GetMaxMemory {

        public static void main(String args[])
        {
                /*
                 * get current Java Runtime using getRuntime()
                 * method of Runtime class.
                 */
                Runtime runtime = Runtime.getRuntime();
             
                /*
                 * To determine amount of maximum memory Java Virtual
                 * Machine (JVM) will attempt to use, use
                 *
                 * long maxMemory()
                 * method of Runtime class.
                 *
                 * If there is no limit inherited, value of Long.MAX_VALUE
                 * will be returned.
                 */
               
                 long maxMemory = runtime.maxMemory();
               
                 System.out.println(maxMemory + " bytes max");
        }
     
     
}

Post a Comment

0 Comments

Recent in Recipes

3/Food/post-list