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

A method returning a raw type cannot override a method returning a generic type

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 5.0
    • 5.0
    • tools
    • b32
    • generic
    • generic

      If a superclass declares a method with a generic return type and a subclass
      overrides that method but returns the corresponding raw type then compiling
      both classes together with -source 1.5 causes an error message to be printed.

      In this situation the compiler should instead print a warning message since
      this situation is analogous to that of assigning a value of a raw type to a
      variable of a generic type, which is allowed but prints a warning.

      % cat G1.java

      import java.util.*;

      public class G1 {

          Iterator<String> strings() { return null; }

      }
      % cat G2.java

      import java.util.*;

      public class G2 extends G1 {

          Iterator strings() { return null; }

      }
      % /w/auto/tiger/build/latest/bin/javac -source 1.5 G1.java G2.java
      G2.java:6: strings() in G2 cannot override strings() in G1; attempting to use incompatible return type
      found : java.util.Iterator
      required: java.util.Iterator<java.lang.String>
          Iterator strings() { return null; }
                   ^
      1 error
      %

            gafter Neal Gafter (Inactive)
            mr Mark Reinhold
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: