我有这堂课:
class MyClass {
public:
int operator[](const std::string&);
const std::string& operator[](const int&) const;
...
};
但是,如果我用 const 文字 0 调用第二个运算符,它的效果很好:
MyClass myclass;
std::cout << myclass[0] << std::endl;
我收到了这个错误:
In function 'int main()':
ambiguous overload for 'operator[]' in 'myclass[0]'
note: candidates are:
note: const int MyClass::operator[](const string&)|
note: const string& MyClass::operator[](const int&) const
我想我明白是什么情况(0 可以是字符串或整数?),但我的问题是:有没有办法解决这个问题并保持运算符重载?