Name: boT120536 Date: 04/11/2001
6 Apr 2001, eval1127@eng -- please see Comments.
--------
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Server VM (build 2.0fcs-E, mixed mode)
There appears to be a limit on the number (or total size of) strings that
can be interned. This is independent of the heap size.
To reproduce this, run the following code:
import java.util.*;
public class TestIntern {
public static void main(String argv[]) {
ArrayList l = new ArrayList();
for (int i=1; i<(1<<30); i++) {
String s = ""+Math.random();
if (i%10000==0) { System.out.println(i+" strings"); }
l.add(s.intern());
}
}
}
On both Windows NT and Solaris, this crashes after 430000 strings with
a non-catchable exception:
Exception in thread "main"
There is no stack trace produced. The thread just dies. The problem
appears to be associated with HotSpot and does not occur on Classic VM.
(Review ID: 120271)
======================================================================
- duplicates
-
JDK-4497186 String.intern() fails (internal memory allocation failure)
-
- Closed
-