摘要:
1. The test java code:package com.haowei.oom;import com.haowei.Util;import java.util.ArrayList;public class OOM { public static void stringInternOOM(){ int counter = 1; try{ int max = Integer.MAX_VALUE; ArrayList list = new ArrayList(); for(int i=0;i... 阅读全文