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

Use of self-referential classes causes cannot resolve symbol (variable this) err

XMLWordPrintable

    • kestrel
    • x86
    • windows_nt



      Name: pa48320 Date: 10/26/99


      Create the following 2 classes:
      public class a
      {
      public a()
      {
      B b = new B();
      System.out.println(b.value.toString());
      }
      }

      public class B
      {
      public final B value = this;
         
      public B(){}

      public String toString()
      {
      return "Hello World";
      }
      }

      Compile a.java first. You will get the following error:
      .\B.java:4: cannot resolve symbol
      symbol : variable this
      location: class B
              public final B value = this;
                                     ^
      1 error
      (Review ID: 97072)

      ======================================================================

            wmaddoxsunw William Maddox (Inactive)
            pallenba Peter Allenbach (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: