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

Anonymous class fails to compile if superclass's constructor throws exception

XMLWordPrintable

    • beta
    • sparc
    • solaris_2.5
    • Verified



      Name: acR10002 Date: 07/06/2000


      Anonymous class gives compiler error if :
      1. Its superclass has a constructor throwing exception.
      2. Exception class doesn't belong to java.lang package (i.e. not imported by default)
      3. Exception class is not imported explicitly.

      Consider the following code :
      ------------------------- Test.java ---------------------------
      public class Test {

          public Test() throws java.io.IOException {
          }
          
          public static void main(String args[]) {
              try {
                  Test t = new Test(){};
              } catch (java.io.IOException e) {};
          }
      }
      ------------------------- end of Test.java --------------------

      An attempt to compile this code using jdk1.3 (or jdk1.4) results in a following
      error :

      ---------------------------------------------
      --> java -version
      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, interpreted mode)
      --> javac Test.java
      Test.java:10: cannot resolve symbol
      symbol: class IOException
                  Test t = new Test(){};
                                     ^
      1 error
      ---------------------------------------------


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

            busersunw Btplusnull User (Inactive)
            aycsunw Ayc Ayc (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: