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

HashMap.entrySet().addAll() does'nt throw UnsupportedOperationException

XMLWordPrintable

    • beta2
    • sparc
    • solaris_2.6
    • Verified



      Name: auR10023 Date: 08/04/2000



      HashMap.entrySet().addAll(Collection) does not throw UnsupportedOperationException for empty Collection. Following example shows that first call of the addAll() method does not throw UnsupportedOperationException when collection has no elements.

       ---------test.java----------
       import java.util.*;

       class test {
           public static void main(String [] args) {
               Vector vect = new Vector();
               HashMap map = new HashMap();
               Set set = map.entrySet();
               try {
                   set.addAll(vect);
                   // ^^^^^^^^^^^^ The UnsupportedOperationException should be thrown here

               } catch (UnsupportedOperationException e) {
                   System.out.println("UnsupportedOperationException exception was " +
                                      "thrown for empty collection");
               }

               vect.addElement("val");
               try {
                   set.addAll(vect);
               } catch (UnsupportedOperationException e) {
                   System.out.println("UnsupportedOperationException exception was " +
                                      "thrown for non empty collection");
               }

           }
       }
       ------output--------

       Second exception was thrown

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

            jjb Josh Bloch
            avusunw Avu Avu (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: