3

来自 D 的文档

或者,您可以使用 auto ref 参数声明单个模板化 opEquals 函数:

bool opEquals()(auto ref S s) { ... }

<...>

如果结构声明一个 opCmp 成员函数,它应该遵循以下形式:

int opCmp(ref const S s) const { ... }

那么为什么下面的代码编译失败呢?

import std.stdio;
import std.conv;

struct Fgs {
    int v;
    this(int iv) {
        v = iv;
    }

    bool opEquals()(auto ref Fgs another) {
        return v == another.v;
    }

    int opCmp(ref const Fgs another) const {
        if (this == another) {
            return 0;
        } else if (this.v < another.v) {
            return -1;
        } else {
            return 1;
        }
    }
}


unittest {
    auto a = Fgs(42);
    auto b = Fgs(10);
    assert(a != b);
    assert(a > b);
}

这是 DMD 的输出:

/home/mfag/lighthouse/testss.d(15): Error: template testss.Fgs.opEquals does not match any function template declaration
/home/mfag/lighthouse/testss.d(10): Error: template testss.Fgs.opEquals() cannot deduce template function from argument types !()(const(Fgs))
4

1 回答 1

5

const写的时候没有考虑到。这应该有效:

bool opEquals()(auto const ref Fgs another) const

但这是语言的一个领域,它有点处于不断变化的状态,auto ref将来可能会在非模板上使用。

于 2012-12-26T15:11:58.333 回答