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

error in BitSet.and

XMLWordPrintable

    • 1.2.2
    • x86
    • windows_nt



      Name: jb33418 Date: 01/06/99


      The following code shows an error in BitSet.and:

      //--------------------------------------------------------------------------------------

      import java.util.*;

      public final class Test
      {
      public static void main(String[] args)
      {
      BitSet a = new BitSet();
      BitSet b = new BitSet();

      a.set(0);
      b.set(1);

      a.and(b);

      System.out.println(a + " " + a.length());
      }
      }

      //--------------------------------------------------------------------------------------

      The output is "{} 1" instead of "{} 0".

      It seems that the internal data structure of BitSet is inconsistent.
      (Maybe recalculateUnitsInUse() at the end of BitSet.and fixes it.)
      (Review ID: 48955)
      ======================================================================

            mmcclosksunw Michael Mccloskey (Inactive)
            jjb Josh Bloch
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: