error C2556: 'const char &MyString::operator [](int)' : overloaded function differs only by return type from 'char &MyString::operator [](int)'

char & operator[](int i);
const char & operator[](int i);/*const char & operator(int i);*/
编译出错:
error C2556: 'const char &MyString::operator [](int)' : overloaded function differs only by return type from 'char &MyString::operator [](int)'
修改:
char & operator[](int i);
const char & operator[](int i) const;/*const char & operator(int i);*/
就可以了。
原文地址:https://www.cnblogs.com/hongjiumu/p/3550819.html