class CheckPointer {
public:
CheckPointer(int * mbeg, int * mend) :
beg(mbeg), end(mend), curr(mbeg) {}
// subscript operator
int & operator[] (const size_t pos) {
if (beg + pos < beg) {
throw out_of_range("ERR: before beg!");
}
if (beg + pos >= end)
throw out_of_range("ERR: end or past end!");
return *(const_cast<int *>(beg + pos));
}
private:
const int * beg;
const int * end;
int * curr;
};
CheckPointerクラスの添え字演算子を定義しました。@param posのタイプはsize_tであるため、ユーザーが正の値を渡したのか負の値を渡したのかを確認できません。ただし、代わりに境界チェックを実行するコードを記述しようとすると、機能します。
if (beg + pos < beg) {
throw out_of_range("ERR: before beg!");
}
なぜそれが機能するのかわかりません...誰かが私を助けてくれますか?
私の質問を検討していただきありがとうございます!
詳細については:
環境:Eclipse CDT、Ubuntu 10.04
テストコード:
int iarr[6] = {1, 2, 3, 4, 5, 6};
CheckPointer cp(iarr, iarr+6);
// subscript
cout << cp[2] << endl;
cout << cp[5] << endl;
cout << cp[-2] << endl; // error: before beg
test-code_output:
terminate called after throwing an instance of 'std::out_of_range'
what(): ERR: before beg!
3
6