2

通过关注此站点C++ FAQ,我为我的 Matrix 类重载了一个 operator()。这是我的课:

class Matrix
{
    public:
    inline float& operator() (unsigned row, unsigned col)
    {
        return m[row][col];
    }

    private:
    float m[4][4];
};

现在我可以像这样在 main 函数中使用它:

int main()
{
    Matrix matrix;
    std::cout << matrix(2,2);
}

但现在我想将它与这样的指针一起使用:

int main()
{
    Matrix matrix;
    Matrix* pointer = &matrix;
    std::cout << pointer(2,2);
}

编译器告诉指针不能用作函数。有什么解决办法吗?

4

1 回答 1

8

您要么需要取消引用它:

(*pointer)(2,2)

或者您需要通过其全名调用操作员:

pointer->operator()(2,2)
于 2012-12-14T12:36:06.370 回答