gpt4 book ai didi

c++ - 索引运算符常量

转载 作者:行者123 更新时间:2023-11-30 01:32:31 25 4
gpt4 key购买 nike

为什么我们需要两个?以下每个operator[]在什么情况下被调用?

  class X {
public:
//...
int &operator [](int index);
const int &operator [](int index) const;
};

最佳答案

foo( X x )
{
x[0]; // non-const indexer is called
}

bar ( const X x )
{
x[0]; //const indexer is called
}

关于c++ - 索引运算符常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1594607/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com