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

generics problem with multiple interface extension

XMLWordPrintable

    • beta2
    • generic
    • solaris_7
    • Verified

      Why does following code causing a compiler error:

      "interfaces java.util.Collection and java.util.List are incompatible; both
      define toArray(T[]), but with different return type"

      public interface XList extends List, Collection {...}

      same error with:
      public interface XList<E> extends List<E>, Collection<E> {...}

      and also when reimplementing the method:
      public interface XList<E> extends List<E>, Collection<E>
      {
          public <T> T[] toArray(T[] target);
      }

      but no error with:
      public interface XList<E> extends List<E> {...}


      The problem is, I need to inherit XList from an XCollection interface, so I
      can't just inherit from java.util.List.


            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: