运算符上的未解析外部符号过载

时间:2018-04-24 08:14:33

标签: c++ visual-studio oop

我有一个类,当我尝试在visual studio上编译它时,它给了我4个外部符号,在4个运算符重载上未解析。它给出了下面列出的.h和.cpp文件中的4个运算符重载的LNK2019错误。似乎链接器没有正确链接函数或者正在发生其他事情。

·H

template <class T>
class Ecuatie
{
    //some private things
public:
    //other function definitions
    Ecuatie<int> friend operator+(int x, Ecuatie<int> &e);
    Ecuatie<int> friend operator+(Ecuatie<int> &e, int x);
    Ecuatie<int> friend operator-(int x, Ecuatie<int> &e);
    Ecuatie<int> friend operator-(Ecuatie<int> &e, int x);
};

的.cpp

template <class T>
Ecuatie<int> operator+(Ecuatie<int> &e, int x) {
    string aux = "+";
    aux += to_string(x);
    str += "+" + aux;
    v.push_back(aux);
    return (*this);
}

template <class T>
Ecuatie<int> operator+(int x, Ecuatie<int> &e) {
    string aux = "";
    aux += to_string(x);
    str = aux + "+" + str;
    if (v.size()) {
        v[0] = "+" + v[0];
    }
    v.push_back("0");
    for (int i = v.size() - 1; i >= 0; i--) {
        v[i + 1] = v[i];
    }
    v[0] = aux;
    return (*this);
}

template <class T>
Ecuatie<int> operator-(Ecuatie<int> &e, int x) {
    string aux = "-";
    aux += to_string(x);
    v.push_back(aux);
    str += "-" + aux;
    return (*this);
}

template <class T>
Ecuatie<int> operator-(int x, Ecuatie<int> &e) {
    string aux = "-";
    aux += to_string(x);
    str = aux + "-" + str;
    if (v.size()) {
        v[0] = "-" + v[0];
    }
    v.push_back("0");
    for (int i = v.size() - 1; i >= 0; i--) {
        v[i + 1] = v[i];
    }
    v[0] = aux;
    return (*this);
}

任何想法为何如何解决这些错误更重要?

1 个答案:

答案 0 :(得分:1)

问题是您将运算符函数声明为非模板函数,但随后将它们定义为模板函数。

从源文件中的定义中删除template<class T>,它应该可以正常工作。

相关问题:Why can templates only be implemented in the header file?