值一千字:
#include<string>
#include<iostream>
class SayWhat {
public:
SayWhat& operator[](const std::string& s) {
std::cout<<"here\n"; // To make sure we fail on function entry
std::cout<<s<<"\n";
return *this;
}
};
int main() {
SayWhat ohNo;
// ohNo[1]; // Does not compile. Logic prevails.
ohNo[0]; // you didn't! this compiles.
return 0;
}
将数字0传递给接受字符串的方括号运算符时,编译器不会抱怨。相反,它会在输入以下方法之前编译并失败:
terminate called after throwing an instance of 'std::logic_error'
what(): basic_string::_S_construct null not valid
以供参考:
> g++ -std=c++17 -O3 -Wall -Werror -pedantic test.cpp -o test && ./test
> g++ --version
gcc version 7.3.1 20180303 (Red Hat 7.3.1-5) (GCC)
我猜
编译器隐式地使用std::string(0)
构造函数输入方法,这会在没有充分理由的情况下产生相同的问题(谷歌上述错误)。
题
无论如何,有没有在类方面解决此问题,因此API用户感觉不到这一点,并且在编译时检测到错误?
也就是说,添加重载
void operator[](size_t t) {
throw std::runtime_error("don't");
}
不是一个好的解决方案。
operator[]()
接受一个int
参数,而不定义它。