Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

CBitArray - a class for dealing with large arrays of Boolean
[ All Languages » VB »  Arrays]

Total Hit ( 2301)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 



Click here to copy the following block
' ------------------------------------------------------------------------
' The CBITARRAY class
'
' simiulates an array of Boolean values
' saves memory by packing one element in one bit
'
' IMPORTANT: you make make ITEM the default member for this class
'      do this from inside the Tools | Procedure Attributes dialog box
'
' Usage:
'  Dim bitArr As New CBitArray
'  bitArr.Init(10000)     ' 10,000 boolean elements
'  ' assign a value
'  bitArr(10) = True
'  ' read it back
'  Print bitArr(10)
'
' ------------------------------------------------------------------------

Option Explicit

Dim mask(0 To 7) As Integer
Dim values() As Byte

Public Sub Init(ByVal numEls As Long)
  ' redimension the internal array
  ' MUST BE THE FIRST METHOD CALLED FOR THIS CLASS
  ReDim values(numEls \ 8) As Byte
End Sub

Private Sub Class_Initialize()
  ' initialize the mask() array
  Dim i As Integer
  mask(0) = 1
  For i = 1 To 7
    mask(i) = mask(i - 1) * 2
  Next
End Sub

' for smoother syntax, you should make ITEM the default member for this class

Property Get Item(ByVal index As Long) As Boolean
  ' retrieve an array item
  Item = values(index \ 8) And mask(index And 7)
End Property

Property Let Item(ByVal index As Long, ByVal new_Item As Boolean)
  Dim ndx As Long, m As Byte
  ' cache the mask into a local variable
  m = mask(index And 7)
  ndx = index \ 8
  ' set or reset only the relevant bit
  values(ndx) = (values(ndx) And Not m) Or (new_Item And m)
End Property


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.