home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101095A < prev    next >
Text File  |  1992-11-03  |  419b  |  21 lines

  1. // fa3.cpp - a dynamic array of float with operator[]
  2. // as both const and non-const member functions
  3.  
  4. #include "fa3.h"
  5. #include <assert.h>
  6.  
  7. // other float_array member function definitions ...
  8.  
  9. const float &float_array::operator[](size_t i) const
  10.     {
  11.     assert(i < len);
  12.     return array[i];
  13.     }
  14.  
  15. float &float_array::operator[](size_t i)
  16.     {
  17.     assert(i < len);
  18.     return array[i];
  19.     }
  20.  
  21.