struct foo {
int x;
int y;
int z;
int& operator [](const std::size_t rhs) & {
switch(rhs) {
case 0U:
return this->x;
case 1U:
return this->y;
case 2U:
return this->z;
default:
return *(&(this->z) + rhs - 2U);
}
}
};
并非所有运算符都可以作为自由函数重载。
不是标准,但在cppreference中清楚地写了,运算符[]
,和必须是非静态成员函数。=
->
()
如果你能做到wrap(f)[2]
,你可以让它工作。但是没有办法让它在一个foo
实例上工作。
template<class T>
struct index_wrap_t {
T t;
template<class Rhs>
decltype(auto) operator[](Rhs&& rhs)& {
return operator_index( *this, std::forward<Rhs>(rhs) );
}
template<class Rhs>
decltype(auto) operator[](Rhs&& rhs)&& {
return operator_index( std::move(*this), std::forward<Rhs>(rhs) );
}
template<class Rhs>
decltype(auto) operator[](Rhs&& rhs) const& {
return operator_index( *this, std::forward<Rhs>(rhs) );
}
template<class Rhs>
decltype(auto) operator[](Rhs&& rhs) const&& {
return operator_index( std::move(*this), std::forward<Rhs>(rhs) );
}
};
template<class T>
index_wrap_t<T> index( T&& t ) { return {std::forward<T>(t)}; }
那么你可以这样做:
int& operator_index( foo& lhs, std::size_t rhs ) {
// your body goes here
}
foo f;
index(f)[1] = 2;
它有效。
index_wrap_t
转发[]
到operator_index
执行 ADL 的免费呼叫。