Q&A
1、JVM OOM问题查找过程
2、第一次遇到JVM堆外内存溢出BUG查找
public static boolean useArraysBinarySearch(String[] arr, String targetValue) {
int a = Arrays.binarySearch(arr, targetValue);
if(a > 0)
return true;
else
return false;
}4、A little Quiz: Why substring() method in JDK 6 can cause memory leaks?
6、类加载器
7、Minor GC 执行的时机
Last updated