home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / RCString.README < prev    next >
Encoding:
Text File  |  1993-02-05  |  1.2 KB  |  23 lines

  1. RCString -
  2. An implementation of a Reference Counting string class.
  3. --------
  4. It seems to me that since we can make a Class have anything we want, and we
  5. know that people love to argue about the merits of C-style, null terminated
  6. strings vs. Pascal-style "counted" strings, an Obj-C String class ought to
  7. be both.  That way we've got the flexiblity of null-termination, and
  8. the efficiency of knowing the string length up front.  The fact that it's an
  9. object should relieve problems with Pascal-style counted strings: we can use
  10. any size representation of the string length we want, not just the initial
  11. byte.
  12.  
  13. So, keeping length of string around in an instance var should minimize calls
  14. to strlen(), which are bound to get expensive.  It should also allow the
  15. use of bcopy() instead of strcpy().  Hopefully, vendor's C library bcopy()
  16. will be cognizant of cache blocking, loop unrolling and so forth, and will
  17. be faster than strcpy().
  18.  
  19. The other thing that's really expensive about both C and Pascal style strings
  20. is memory allocation/deallocation.  The obvious solution to that is "refence
  21. counting."  Reference counting makes the object 'copy-on-write', I guess.
  22. It should minimize calls to bcopy(), malloc() and free().
  23.