BitSet void set(int bitIndex,boolean value) Method Example Program


Sets the bit at the specified index to the specified value.

Program

package com.candidjava;

import java.util.BitSet;

/**
 * @author :vinod kumar v
 * @description :The BitSet.set(int bitIndex,boolean value) method sets the bit
 *              at the specified index to the specified value.
 * */

public final class BitSetSetBitIndexBooleanValue {
	public static void main(String[] args) {

		BitSet obj = new BitSet(8);
		BitSet obj1 = new BitSet(8);

		obj.set(0);
		obj.set(1);
		obj.set(2);
		obj.set(3);

		obj1.set(2);
		obj1.set(4);
		obj1.set(6);
		obj1.set(8);

		System.out.println("The Value in obj:" + obj);
		System.out.println("The Value in obj1" + obj1);

		obj.set(3, false);
		obj.set(5, true);
		obj.set(12, true);
		obj1.set(3, false);
		obj1.set(5, true);
		obj1.set(12, true);

		System.out.println("The Value in obj:" + obj);
		System.out.println("The Value in obj1" + obj1);
	}
}

Output

The Value in obj:{0, 1, 2, 3}
The Value in obj1{2, 4, 6, 8}
The Value in obj:{0, 1, 2, 5, 12}
The Value in obj1{2, 4, 5, 6, 8, 12}

Explanation

public void set(int bitIndex,boolean value)
Sets the bit at the specified index to the specified value.
Parameters:
bitIndex - a bit index
value - a boolean value to set
Throws:
IndexOutOfBoundsException - if the specified index is negative


Related Post

Comments


©candidjava.com