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

generics: subtyping problem when type parameters permuted

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.4.2
    • 5.0
    • tools
    • mantis
    • generic
    • solaris_8

      Compilation of the source below shows a problem with subtyping
      generic classes.
      - The class D<X,Y> is a subclass of C<X,Y>.
        This is confirmed by the correct an accepted cast in method f().
      - The class D<Y,X> should a subclass of C<Y,X>,
        because permuting parameters X and Y in both classes C and D should not
        alter subclass relationship.
        So the cast in method g() should be correct, but the compiler rejects it.

      class C<X, Y> {}

      class D<X, Y> extends C<X, Y>
      {
          void f(C<X, Y> c)
          {
              D<X, Y> d = (D<X, Y>) c;// OK because D extends C
          }

          void g(C<Y, X> c)// parameters X and Y are now permuted
          {
              D<Y, X> d = (D<Y, X>) c;// should also be OK but is not !?
              // ^
              // inconvertible types
              // found : C<Y,X>
              // required : D<Y,X>
          }
          void gWorkAround(C<Y, X> c)// but generates unchecked warning
          {
              D<Y, X> d = (D) ((C) c);
          }
      }

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: