What is the difference between BitArray and BitVector 32 structure and what are the advantages of BitVector 32 structure over BitArray? Why is the BitVector 32 structure more efficient than BitArray?

Thanks in advance.

Jay...

link|improve this question

0% accept rate
feedback

2 Answers

I had an answer based on my intuition but I was not sure because I do not know C# yet. Anyway, to verify my instinctive reaction, I searched Google for BitVector32. The first was Microsoft's documentation:

http://msdn.microsoft.com/en-us/library/system.collections.specialized.bitvector32.aspx

BitVector32 is more efficient than BitArray for Boolean values and small integers that are used internally. A BitArray can grow indefinitely as needed, but it has the memory and performance overhead that a class instance requires. In contrast, a BitVector32 uses only 32 bits.

link|improve this answer
But in BitVector32 also we create an intance of that type. BitVector32 newVector = new BitVector32(4); //like this. – Jaywith.7 May 24 '09 at 11:27
1  
@Jaywith.7 » A new instance of a struct doesn't have the same overhead as an instance of a class. – John Feminella May 24 '09 at 11:38
The capacity of BitVector32 is limited to 32 bits, the size of an int. Therefore, indexing and masking can be single ops. Compare this to a bit array with 734 bits and you want to find out if bit 197 is set. Think about how you would do that (from the perspective of the class designer). Remember, a bit array is not an array of bools internally. – Sinan Ünür May 24 '09 at 11:43
feedback

BitVector32 is more efficient than BitArray for Boolean values and small integers that are used internally. A BitArray can grow indefinitely as needed, but it has the memory and performance overhead that a class instance requires. In contrast, a BitVector32 uses only 32 bits.

http://msdn.microsoft.com/en-us/library/system.collections.specialized.bitvector32.aspx

BitVector32 is a struct and consumes only 4 bytes. BitArray is a class that has overheads associated with it and is therefore less efficient - BitArray will need at least 8 bytes before you've even added any objects to it as it lives on the heap. More about the stack and heap here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.