来自 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))