jdk/src/share/classes/sun/management/ManagementFactory.java
private static MemoryPoolMXBean createMemoryPool
(String name, boolean isHeap, long uThreshold, long gcThreshold) {
{- -------------------------------------------
(1) 新しい sun.management.MemoryPoolImpl のインスタンスを作ってリターンする
---------------------------------------- -}
return new MemoryPoolImpl(name, isHeap, uThreshold, gcThreshold);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.