将错误与模板类中的友元函数链接

时间:2013-12-26 01:53:35

标签: c++ templates visual-c++ friend-function

使用自制的Complex类时出现链接问题。

班级定义:

template<class T>
class Complex
{
public:
    Complex(const T real = 0, const T imag = 0);
    Complex(const Complex<T>& other);
    ~Complex(void) {};

    Complex<T> operator*(const Complex<T>& other) const;
    Complex<T> operator/(const Complex<T>& other) const;
    Complex<T> operator+(const Complex<T>& other) const;
    Complex<T> operator-(const Complex<T>& other) const;

    friend void operator*=(const Complex<T>& z,const Complex<T>& other);
    friend void operator/=(const Complex<T>& z,const Complex<T>& other);
    friend void operator+=(const Complex<T>& z,const Complex<T>& other);
    friend void operator-=(const Complex<T>& z,const Complex<T>& other);
    void operator=(const Complex<T>& other);

    friend T& real(Complex<T>& z);
    friend T& imag(Complex<T>& z);
    friend T abs(Complex<T>& z);
    friend T norm(Complex<T>& z);
private:
    T real_;
    T imag_;
};

abs的实施:

template<class T>
T abs(Complex<T>& z)
{
    return sqrt(z.real_*z.real_ + z.imag_*z.imag_);
}

我使用abs这样的函数:if(abs(z) <= 2)

以下是我遇到的一些错误:

Error   4   error LNK2001: unresolved external symbol "long double __cdecl abs(class Complex<long double> &)" (?abs@@YAOAAV?$Complex@O@@@Z) C:\Users\Lucas\Documents\Visual Studio 2012\Projects\Fractals\Fractals\Main.obj Fractals
Error   3   error LNK2001: unresolved external symbol "long double & __cdecl imag(class Complex<long double> &)" (?imag@@YAAAOAAV?$Complex@O@@@Z)   C:\Users\Lucas\Documents\Visual Studio 2012\Projects\Fractals\Fractals\Main.obj Fractals

使用Complex<float>代替Complex<long double>时出现相同的错误。我使用Visual C ++ 2012.如果你给我一些如何解决这个问题的提示,我真的很高兴。谢谢。

1 个答案:

答案 0 :(得分:2)

声明为

的函数
template <typename T>
class Complex {
    // ...
    friend T abs(Complex<T>& z);
    // ...
};

不是功能模板!它看起来有点像一个,因为它嵌套在类模板中,但这还不够。以下是您可能要写的内容:

template <typename T> class Complex;
template <typename T> T abs(Complex<T>&);


template <typename T>
class Complex {
    // ...
    friend T abs<T>(Complex<T>& z);
    // ...
};

或者,您可以在将abs()声明为friend时实施{{1}}。