1 10 package org.jgap.util; 11 12 18 public class SystemKit { 19 20 private final static String CVS_REVISION = "$Revision: 1.1 $"; 21 22 28 public static double getTotalMemoryMB() { 29 return (Runtime.getRuntime().totalMemory() / 1024 / 1024); 30 } 31 32 38 public static double getFreeMemoryMB() { 39 return (Runtime.getRuntime().freeMemory() / 1024 / 1024); 40 } 41 } 42 | Popular Tags |