0

我试图为我的一个容器实现 operator[] 。但我对 c++ 真的很陌生,而且我的实现似乎有一个错误。

我这样声明它们:

float& operator[](const int &idx);
const float& operator[](const int &idx) const;

这应该没问题,它几乎是从教程中复制/粘贴的。现在,Quaternion.cpp 看起来像这样:

float& Quaternion::operator[](const int &idx)
{
    if(idx == 0)
    {
        return x;
    }
    if(idx == 1)
    {
        return y;
    }
    if(idx == 2)
    {
        return z;
    }
    if(idx == 3)
    {
        return w;
    }
    std::cerr << "Your Quaternion is only accessible at positions {0, 1, 2, 3}!" 
              << std::endl;
    return x;
}

const float& Quaternion::operator[](const int &idx)
{
    if(idx == 0)
    {
        return const x;
    }
    if(idx == 1)
    {
        return const y;
    }
    if(idx == 2)
    {
        return const z;
    }
    if(idx == 3)
    {
        return const w;
    }
    std::cerr << "Your Quaternion is only accessible at positions {0, 1, 2, 3}!" 
         << std::endl;
    return x;
}

我收到签名“const float& Quaternion::operator[](const int &idx)”的错误。

之前发生的另一件事是,如果超出边界,我无法返回 0。也许我会,一旦这个问题得到解决,但它之前给了我一条错误消息。那时我刚刚退回了 x,这让我很不高兴。

4

1 回答 1

4

const您从第二个 (const) 运算符实现中省略了尾随修饰符:

const float& Quaternion::operator[](const int &idx) const
{
    // ...
}
于 2012-11-25T20:29:22.820 回答