码迷,mamicode.com
首页 > 编程语言 > 详细

C++使用[]赋值

时间:2019-07-30 00:53:31      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:index   stream   main   参数   重载   std   col   代码   friend   

class Test 
{
public:
    const int& operator[]( const int& index) 
    {
        std::cout << "[]" << std::endl;
        return 2;
    }
    int& operator[]( int&& index)
    {
        std::cout << "[][]" << std::endl;
        int j = 3;
        return j;
    }
    const int& operator=(const int& index) 
    {
        std::cout << "=" << std::endl;
        return 3;
    }
    friend std::ostream& operator<<(std::ostream& out, const Test&)
    {
        out <<1 << endl;
        return out;
    }
};
int main () 
{
    Test t;
    const int i = 12;
    int k = t[1] = i;
    cout << k << endl;
    cout << t[i] << endl;
  return 0;
} 

代码:

t[1] = i;

会调用参数为int && 的[]重载函数,也就是

int& operator[](int&& index)
    {
        std::cout << "[][]" << std::endl;
        int j = 3;
        return j;
    }

注意此函数不能返回const int&,因为不能给一个const赋值。

这句话的含义是 先t[1],然后赋值i

C++使用[]赋值

标签:index   stream   main   参数   重载   std   col   代码   friend   

原文地址:https://www.cnblogs.com/shuiyonglewodezzzzz/p/11267305.html

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