The subscript operator overloading

Overload operator is used to enhance operation of the C ++ function arrays.

/***
subscript.cpp
***/
#include<iostream>
using namespace std;
const int SIZE = 10;

class safearay
{
    private:
        int arr[SIZE];
    public:
        safearay()
        {
            register int i;
            for(i = 0; i < SIZE ;i++)
            {
                arr[i] = i;
            }   
        }
        int& operator[](int i)
        {
            if(i > SIZE)
            {
                cout << "the index is too big" << endl;
                return arr[0];
            }
            return arr[i];
        }
};

int main()
{
    safearay A;
    cout << "A[2] = " << A[2] << endl;
    cout << "A[5] = " << A[5] << endl;
    cout << "A[12] = " << A[12] << endl;
    return 0;
}

operation result:

exbot@ubuntu:~/wangqinghe/C++/20190809$ g++ subscript.cpp -o subscript

exbot @ ubuntu: ~ / wangqinghe / C ++ / 20190809 $ ./subscript

A[2] = 2

A[5] = 5

the index is too big

A[12] = 0

Guess you like

Origin www.cnblogs.com/wanghao-boke/p/11327910.html