Skip to content

Instantly share code, notes, and snippets.

@jyukutyo
Created April 27, 2012 07:01
Show Gist options
  • Save jyukutyo/2506746 to your computer and use it in GitHub Desktop.
Save jyukutyo/2506746 to your computer and use it in GitHub Desktop.
どのGCが使われているか表示する
import java.lang.management.*;
import java.util.List;
public class GC {
public static void main(String args[]) {
List<GarbageCollectorMXBean> l = ManagementFactory.getGarbageCollectorMXBeans();
for (GarbageCollectorMXBean b : l) {
System.out.println(b.getName());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment