How to use flip bits in BitSet in Java

1 Answer

0 votes
import java.util.*; 
 
public class MyClass {
    public static int TOTAL_BITS = 8;
     
    public static void set_random_bits(BitSet sb) {
        Random r = new Random();
         
        for (int i = 0; i < TOTAL_BITS / 2; i++)
            sb.set(r.nextInt(TOTAL_BITS));
    }
    public static void print_bits(BitSet sb) {
        for (int i = 0; i < TOTAL_BITS; i++) {
             System.out.print(sb.get(i) ? "1" : "0");
        }
        System.out.println();
    }
    public static void main(String args[]) {
        BitSet bs = new BitSet(TOTAL_BITS);
 
        set_random_bits(bs);
         
        print_bits(bs); 
        
        bs.flip(0, 4); 
        
        print_bits(bs); 
    }
}
  
  
  
/*
run:
  
01000110
10110110
  
*/

 



answered Oct 12, 2019 by avibootz

Related questions

1 answer 162 views
162 views asked Dec 6, 2019 by avibootz
1 answer 177 views
177 views asked Apr 18, 2018 by avibootz
5 answers 416 views
416 views asked Oct 11, 2019 by avibootz
1 answer 196 views
196 views asked Oct 11, 2019 by avibootz
1 answer 124 views
1 answer 158 views
158 views asked Apr 1, 2019 by avibootz
...