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

generics: used of ? get bound error

XMLWordPrintable

    • tiger
    • generic
    • solaris_8


      class BoundBug {
          class C {}

          class B<T extends C>
      {
      void foo() {
      B<? super T> con = null; //ok
      B<? extends T> cov = null; //ok
             B<?> biv = null; //fails
      B<T> inv = null;
      }
          }

          static
      {
           B<? super C> con = null; //ok
      B<? extends C> cov = null; //ok
      B<?> biv = null; //fails
      B<C> inv = null;
      }
      }

      /*
      BoundBug.java:15: type parameter java.lang.Object is not within its bound
                      B<?> biv = null; //this fails
                         ^
      BoundBug.java:24: type parameter java.lang.Object is not within its bound
                 B<?> biv = null; //and this fails
                    ^
      2 errors

      */

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: