4

如果结构具有任意多个数据成员(<将使用列出数据成员的顺序定义),如何概括<的定义?一个包含 3 个数据成员的简单示例:

struct nData {
    int a;
    double b;
    CustomClass c;   // with == and < defined for CustomClass
    bool operator == (const nData& other) {return (a == other.a) && (b == other.b) && (c == other.c);}
    bool operator < (const nData& other) {
        if (  (a < other.a)  ||  ((a == other.a) && (b < other.b))  ||
                ((a == other.a) && (b == other.b) && (c < other.c))  )
            return true;
        return false;
    }
};

以某种方式使用可变参数模板和递归?

4

2 回答 2

15

您可以使用std::tie创建对类成员的引用的元组,并使用为元组定义的字典比较运算符:

bool operator < (const nData& other) const {  // better make it const
    return std::tie(a,b,c) < std::tie(other.a, other.b, other.c);
}
于 2014-02-17T16:56:13.610 回答
3

这种结构易于扩展,并允许使用任意比较函数(例如strcmp

if (a != other.a) return a < other.a;
if (b != other.b) return b < other.b;
if (c != other.c) return c < other.c;
return false;
于 2014-02-17T16:56:12.553 回答