2

我正在努力定义朋友运算符功能。我的代码如下:

    template <typename typ>
    class VecClass 
    {
     public:
        VecClass();
        /* other class definitions */
        friend void operator+(VecClass op1,VecClass op2);
    }

    template <typename typ>
    void VecClass<typ>::operator+(VecClass<typ> &op1,VecClass<typ> &op2)
    {
        /* do some stuff on op1 and op2 in here */
    }

其中 VecClass 是一个用于创建向量并在这些向量上执行各种功能的类(注意,我已经简化了代码以尝试尽可能清晰)。编译时,使用

    int main()
    {
        VecClass=a,b;
        a+b;
        return 0;
    }

我收到以下编译错误

     error C2039: '+' : is not a member of 'VecClass<typ>'

我显然遗漏了一些东西,如果有任何建议,我将不胜感激。谢谢。

4

1 回答 1

6

您声明了一个朋友运算符,而不是类成员,所以删除VecClass<typ>::

template <typename typ>
void operator+(VecClass<typ> &op1,VecClass<typ> &op2)
{
        /* do some stuff on op1 and op2 in here */
}
于 2012-07-04T13:12:16.833 回答