码迷,mamicode.com
首页 > 其他好文 > 详细

下标运算符重载

时间:2019-08-10 19:34:54      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:end   dex   subscript   style   out   private   space   结果   c++   

重载该运算符用于增强操作C++数组的功能。

/***
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;
}

运行结果:

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

下标运算符重载

标签:end   dex   subscript   style   out   private   space   结果   c++   

原文地址:https://www.cnblogs.com/wanghao-boke/p/11327910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!