home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH09 / A092272.TXT < prev    next >
Encoding:
Text File  |  1993-08-26  |  348 b   |  7 lines

  1. Notice that there are several static variables:  "nextFree",
  2. "cacheSize", "numUsed", and "pCache".  These static variables are
  3. used to manage the cache.  "nextFree" points to the first free
  4. "CachedNode" in the cache.  "cacheSize" is the maximum number of
  5. nodes that can be stored in the cache.  "numUsed" is the number of
  6. nodes in the cache.
  7.