4

我正在编写一个 Line 类来创建数值方法,并且我希望这些运算符(*、+、-)使我的代码更具可读性和更易于理解。

        #include <vector>

        using namespace std;

        typedef vector<double> Vector;

        class Line : public Vector
        {
        public:
            Line();
            ~Line();

            Line operator+(Line);
            Line operator-(Line);
            Line operator*(double);
        };


        Line Line::operator*(double alfa)
        {
            Line temp;
            int n = size();
            temp.resize(n);
            for (int i = 0; i < n; i++)
            {
                temp.at(i) = this->at(i)*alfa;
            }
            return temp;
        }

        Line Line::operator+(Line line)
        {
            int n = size();
            Line temp;
            temp.resize(n);
            for (int i = 0; i < n; i++)
            {
                temp.at(i) = this->at(i) + line[i];
            }
            return temp;
        }

        Line Line::operator-(Line line)
        {
            int n = size();
            Line temp;
            temp.resize(n);
            for (int i = 0; i < n; i++)
            {
                temp.at(i) = this->at(i) - line[i];
            }
            return temp;
        }


        int main()
        {
            return 0;
        }

是否可以从 Vector 类中重载此类运算符?我应该只制作函数(或方法)而不是运算符吗?还有其他建议吗?

ps1:我使用 Visual Studio 11 作为编译器。

ps2:我没有将项目启动为“win32项目”,它是控制台应用程序。

我收到以下错误:

Error   1   error LNK2019: unresolved external symbol "public: __thiscall Line::Line(void)" (??0Line@@QAE@XZ) referenced in function "public: class Line __thiscall Line::operator*(double)" (??DLine@@QAE?AV0@N@Z) C:\Users\Lucas\Documents\Visual Studio 11\Projects\test\test\test.obj   test


Error   2   error LNK2019: unresolved external symbol "public: __thiscall Line::~Line(void)" (??1Line@@QAE@XZ) referenced in function "public: class Line __thiscall Line::operator*(double)" (??DLine@@QAE?AV0@N@Z)    C:\Users\Lucas\Documents\Visual Studio 11\Projects\test\test\test.obj   test
4

4 回答 4

5

您必须在全局范围内重载运算符:

vector<double> operator*(const vector<double>& v, double alfa)
{
    ...
}

vector<double> operator+(const vector<double>& v1, const vector<double>& v2)
{
    ...
}

vector<double> operator-(const vector<double>& v1, const vector<double>& v2)
{
    ...
}

至于链接器错误,看起来您没有实现 Line 构造函数和析构函数。

于 2013-01-20T00:00:55.540 回答
2

您永远不应该从不std用于继承的 -classes 继承。从没有虚拟析构函数的类继承是非常危险的。

我建议你使用聚合:让你的Line类包含一个vector类型的成员,例如命名myVector_,并以他们使用这个成员变量的方式实现所需的运算符。

size()所以你替换所有对等的调用myVector.size()

Line Line::operator*(double alfa)
{
    Vector temp;
    int n = myVector_.size();
    temp.resize(n);
    for (int i = 0; i < n; i++)
    {
        temp.at(i) = myVector_.at(i)*alfa;
    }
    return temp;
}
于 2013-01-19T23:58:38.143 回答
1

链接器错误告诉您您的代码缺少您声明的两个成员函数的定义 - 构造函数和析构函数:

Line::Line() {
    // Code of the constructor goes here
}

Line::~Line() {
    // Code of the destructor goes here
}
于 2013-01-19T23:57:43.003 回答
0

当然正确的做法是在行内有一个 Vector 对象,而不是从 Vector 中“继承”?通常从容器继承std::并不是一个很好的数据......我很确定“线”实际上不是一个向量,它是一个“有一个”向量。[“当你继承”的规则是“X 是一个 Y”,当“X 有一个 Y”时,你会创建一个复合对象——所以 X 里面有一个 Y。]

您需要声明构造函数和析构函数以消除链接错误。

我也将const Line&用作数学运算的输入,因为您永远不会更改输入。

于 2013-01-19T23:59:58.363 回答