Overloading The Subscript Operator
Go Up to Overloading Operator Functions Overview Index (C++)
Syntax
postfix-expression [ expression ]
Description
The corresponding operator function is operator[](). This can be user-defined for a class X (and any derived classes). The expression X[y], where X is an object of class X, is interpreted as x.operator[](y).
The operator[]() can only be overloaded as a nonstatic member function.