home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH06 / A06213.TXT < prev    next >
Encoding:
Text File  |  1993-11-18  |  522 b   |  11 lines

  1. Because bit fields rely on the architecture of your computer and
  2. implementation of C++, code that uses them may not be portable.
  3. The attempt to save space may be offset on some computers by extra
  4. overhead required to address individual bit fields.  Also, when
  5. the location of a bit field is adjusted to fit a byte or word
  6. boundary, bits may be left unused.
  7.  
  8. This book describes many powerful and flexible tools that support
  9. object-oriented programming in C++.  The member bit fields
  10. facility is not one of them.
  11.