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

super.Classname.fieldname is illegal

XMLWordPrintable

    • generic
    • generic



      Name: ssT124754 Date: 01/31/2001


      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)


      According to JLS 15.11, the only legal uses of super to access fields are:

      super.fieldname
      classname.super.fieldname

      However, Javac 1.3 also compiles this without error:

      class Super {
        interface I {
          int i = 1;
        }
      }
      class Sub extends Super {
        Sub() {
          System.out.println(super.I.i);
        }
      }

      The construct super.Classname.fieldname (or interfacename, in this case) needs
      to be rejected as invalid, or added to the JLS.
      (Review ID: 115916)
      ======================================================================

            gafter Neal Gafter (Inactive)
            ssultanasunw Shaheen Sultana (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: