D运算符重载

时间:2011-06-04 14:42:34

标签: operator-overloading d

import std.stdio;

struct Vector2
{
    float x, y;

    this (float x, float y)
    {
        this.x = x;
        this.y = y;
    }

    // vector2 * number
    Vector2 opBinary(string op)(const float rhs)
    if (op == "*")
    {
        auto result = this;
        this *= rhs;
        return this;
    }

    // number * vector2
    Vector2 opBinaryRight(string op)(const float lhs)
    if (op == "*")
    {
        return this.opBinary!(op)(lhs);
    }

    /*
      assignment operators
    */

    // vector2 = vector2
    ref Vector2 opAssign(const ref Vector2 rhs)
    {
        x = rhs.x;
        y = rhs.y;
        return this;
    }

    // vector2 *= number
    ref Vector2 opOpAssign(string op)(const float rhs)
    if (op == "*") {
        x *= rhs;
        y *= rhs;
        return this;
    }
}

unittest
{
    auto first = Vector2(1, 2);
    auto second = Vector2(3, 3);
    auto number = 4.0f;

    Vector2 result = first *= 3;
    assert(result == Vector2(3, 6));
    // BUG *
    // assert(first == Vector2(1, 2));    
}

void main() 
{}

您好。当我尝试使用 -unittest 选项编译这个小程序时,为什么最后一个断言失败?任何帮助,将不胜感激。感谢..

1 个答案:

答案 0 :(得分:5)

为什么你会期望它通过?

first *= 3会修改first,因此不会保留其原始值。

也许你打算写

Vector2 result = first * 3;

Vector2 opBinary(string op)(const float rhs)

也存在问题

该函数是像10 * v这样的表达式中使用的函数。您的代码会修改表达式this中的this *= rhs。该功能应该实施:

auto result = this;
result *= rhs;
return result;