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

Cannot override non-trivial generic method

XMLWordPrintable

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

      The following code appears to be legal but does not compile:

          public class AOV {

      protected <T extends Object & Comparable<? super T>> void
      addObjectValue(String elementName,
      Class<T> classType,
      T defaultValue,
      Comparable<? super T> minValue,
      Comparable<? super T> maxValue,
      boolean minInclusive,
      boolean maxInclusive)
      { }

      static class Sub extends AOV {

      protected <T extends Object & Comparable<? super T>> void
      addObjectValue(String elementName,
      Class<T> classType,
      T defaultValue,
      Comparable<? super T> minValue,
      Comparable<? super T> maxValue,
      boolean minInclusive,
      boolean maxInclusive)
      { }

      }

          }

          % /java/re/jdk/1.5/promoted/all/b49/binaries/linux-i586/bin/javac -source 1.5 AOV.java
          AOV.java:14: name clash: <T>addObjectValue(java.lang.String,java.lang.Class<T>,T,java.lang.Comparable<? super T>,java.lang.Comparable<? super T>,boolean,boolean) in AOV.Sub and <T>addObjectValue(java.lang.String,java.lang.Class<T>,T,java.lang.Comparable<? super T>,java.lang.Comparable<? super T>,boolean,boolean) in AOV have the same erasure, yet neither overrides the other
      static class Sub extends AOV {
      ^
          1 error
          %

      It doesn't compile on b32, b47, or b48 either.

      -- ###@###.### 2004/5/2

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: