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

static initializer in interfaces crashes VM

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 1.1
    • 1.1
    • hotspot
    • None
    • 1.1fcs
    • generic, sparc
    • solaris_2.4, solaris_2.5.1
    • Not verified

      A static initializer in an interface causes a VM crash when run.
      The example is:

      public interface tutu {
        public final static tutu ExampleImplementation = new toto();
      }

      public class toto implements tutu{
          public toto() {}

          public static void main(String[] args) {
      toto myToto = new toto();
          }
      }


      This is reported by ###@###.###.
      I have some trouble with the following code:

      public class toto implements tutu{
        public toto() {}
      }
      public interface tutu{
        public final static tutu ExampleImplementation = new toto();
      }

      Now write a main with only {
        toto myToto = new toto();
      }

      Although this compiles fine, and works well under 1.0.2, it behaves
      somewhat differently under 1.1: Compiles OK but crashes the VM:
      Segmentation violation on NT, SIGSEGV on Solaris, and even IBM's AIX 1.1
      gets a SIGILL.

      Now, I agree that it may be a somewhat strange code. Anyway, I think it
      is legal code. Any opinions?
      Anyway, if the VM crashes, the compiler should not allow me to do it if
      it is not legal. It should be pretty easy to see that there is a circular
      dependency in the code. (though I'd rather the 1.0.2 behaviour).

      Can anybody reproduce this 1-line bug?


            nsaraiyasunw Nakul Saraiya (Inactive)
            rriggs Roger Riggs
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: