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 119 views
119 views asked Dec 6, 2019 by avibootz
1 answer 124 views
124 views asked Apr 18, 2018 by avibootz
5 answers 304 views
304 views asked Oct 11, 2019 by avibootz
1 answer 125 views
125 views asked Oct 11, 2019 by avibootz
1 answer 93 views
1 answer 118 views
118 views asked Apr 1, 2019 by avibootz
...