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

(coll spec) Arrays.fill(Object[], ...) should document ArrayStoreException

XMLWordPrintable

      Name: ksC84122 Date: 04/15/99


      The javadoc for java.util.Arrays.fill(Object[], Object) and
      java.util.Arrays.fill(Object[], int, int, Object) says nothing about situation
      when array contains objects that are not comparable with key value.

      In fact ArrayStoreException is thrown (jdk1.2.2).

      Here is example demonstrating this behaviour
      ------------- Test1.java --------------

      import java.lang.Integer;
      import java.lang.String;
      import java.util.Arrays;

      public class Test1 {
          public static void main(String[] argv) {
              String a[] = {"test1", "test2", "test3"};
              Integer val = new Integer(0);
              try {
                  Arrays.fill(a, val);
              } catch (ArrayStoreException e) {
                  System.out.println("WARNING! Undocumented exception"
                                     + " has been thrown");
                  return;
              } catch (Exception e) {
                  System.out.println("ERROR! Illegal exception has been thrown");
                  return;
              }
              System.out.println("ERROR! No exception has been thrown");
              return;
          }
      }

      ------------- output --------------
      <kai@moon(pts/8).275> java Test1
      WARNING! Undocumented exception has been thrown

      ======================================================================

            martin Martin Buchholz
            skosunw Sko Sko (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: