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

javadoc thinks <T> f(T[]) erases to f(Object) instead of f(Object[])

XMLWordPrintable

    • b61
    • generic
    • generic

      Examine the shell transcript below:
      ------------------------
      $ cat Toy.java
      public interface Toy {
          void f(Object x);
          <T> void f(T[] x);
      }
      $ javadoc -quiet Toy.java
      $ grep '<A NAME=.*f(' Toy.html
      <A NAME="f(java.lang.Object)"><!-- --></A><H3>
      <A NAME="f(java.lang.Object)"><!-- --></A><A NAME="f(T[])"><!-- --></A><H3>
      ------------------------

      The two methods get the same signature in the generated html, even though
      their "true" erased types, as known by javac, are different.
      The erased type for T[] should be Object[], not Object.
      ###@###.### 2005-06-25 01:14:37 GMT

            jhosunw Jamie Ho (Inactive)
            martin Martin Buchholz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: