Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4439922

String.intern() has fatal error when too many strings are interned.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.3.0, 1.3.1
    • hotspot
    • generic, x86
    • generic, windows_nt, windows_2000



      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)
      ======================================================================

            collins Gary Collins (Inactive)
            bonealsunw Bret O'neal (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: