C/C++
lessoop.asc
Associated article: Toward a Less Object-Oriented View of C++
Tags: C/C++ Tools Design
_TOWARDS A LESS OBJECT-ORIENTED VIEW OF C++_
by Harris Shiffman
Example 1: When subscript are within range, the subscript operator
invokes the one it inherits
int& protected_array::operator[] (int x)
{ return (x >= 0 && x < size()) ?
array::...


