/* ECP: FILEname=fig14_21.cpp */ /* 1*/ char & /* 2*/ String::operator [ ] ( unsigned int Index ) const /* 3*/ { /* 4*/ if( Index > strlen( Storage ) ) /* 5*/ cerr << "Warning: out of bounds string access" << endl; /* 6*/ return Storage[ Index ]; /* 7*/ }