2015. 1. 28. 22:02
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

package Runtime;

public class maxMemory {
    public static void main(String[] argv)throws Exception{
        long heapSize =Runtime.getRuntime().totalMemory();
        System.out.println("heapSize : "+ heapSize);
       
        long heapMaxSize=Runtime.getRuntime().maxMemory();
        System.out.println("heapMaxSize : "+ heapMaxSize);
       
        long heapFreeSize=Runtime.getRuntime().freeMemory();
        System.out.println("heapFreeSize : "+ heapFreeSize);
    }
}

'Java' 카테고리의 다른 글

Runtime : gc()  (0) 2015.01.28
Runtime : freeMemory()  (0) 2015.01.28
Runtime : exec(String command)  (0) 2015.01.28
Runtime : exec(String[] command)  (0) 2015.01.28
Runtime : addShutdownHook(Thread hook)  (0) 2015.01.28
Posted by af334