effective c++中有这么一段。
class TextBlock{
public:
...
const char& operator[](std::size_t position) const
{
...
return text[position];
}
char& operator[] (std::size_t position)
{
...
}
private:
std::string text;
代码大致这样,不明白的是它说:
*this 的原始类型分别是TextBlock&,和const TextBlock&。
为什呢这个this类型是引用呢?this不是直接指向类实例的么。
TextBlock a1 = TextBlock("hello");
TextBlock &a2 = a1;
a2[0]
是这样得来的引用?我不知道是我看这个书没看清楚,还是本身*this指针就有这样的性质。
请大家指教,感激不尽。
感谢几位的回答,这个社区真的很好,谢谢。
澄清两点:
引用是一种类型
表达式产出值的类型永远不会是引用类型
书中这里有误。
*this
的类型可能是const T或T,value category永远是左值。..是左值 ..左值 。。