千の言葉に値する:
#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
それを定義しないでください。