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

imports versus erasure of inner classes

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Future Project
    • Icon: P4 P4
    • None
    • 5.0
    • specification
    • generic
    • solaris_8

      The problem of referring to a nonstatic class from a static context is the same when the name is available by virtue of being imported. Does an imported class name always have an erased outer?


      package p;

      import p.A.C;

      class A<T> {
          public class C {
              T x = null;
          }
      }

      class Main {
          {
              C c = null;
              c.x = "foo"; // what is the type of c.x?
          }
      }

            abuckley Alex Buckley
            gafter Neal Gafter (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: