0

我有以下代码:

#include <iostream>

struct Base {
    int i_;
};

class El : protected Base {
public:
    int get_i() const { return i_; }
    void set_i(int i) { i_ = i; }
};

class It : protected Base {
public:
    using pointer = const El*;
    using reference = const El&;

    reference operator*() const
    {
        return reinterpret_cast<reference>(*this);
    }

    pointer operator->() const
    {
        return reinterpret_cast<pointer>(this);
    }
};

int main()
{
    It it;
    It* itp = &it;
    std::cout << *****(itp)->get_i() << "\n"; //ERROR
}

GCC 和 Clang++ 都无法调用operator*or ,所以无论我尝试了多少次间接调用,最后一行都会operator->出错。It doesn't have member function 'get_i'标准是否保证这种不直观的行为?

4

1 回答 1

5

运算符优先级:->绑定更紧密,因此应用于指针itp

当您重载operator->时,这不会影响operator->应用于指向您的类的指针的含义。你想要(*itp)->get_i();,我想。

于 2012-09-07T20:50:22.853 回答