我在比较班级。对于下面的代码
#include <string>
#include <set>
#include <tuple>
#include <cassert>
enum class e : bool
{
positive = true,
negetive = false
};
class A
{
public:
int a;
e e1 : 1;
friend bool operator==(const A&, const A&);
};
bool operator==(const A& lhs, const A& rhs) {
auto tie = [](const A& a1) {
return std::tie(a1.a, a1.e1);
};
auto x1 = tie(lhs);
auto x2 = tie(rhs);
return x1 == x2;
}
int main()
{
A a1;
a1.a = 10;
a1.e1 = e::positive;
A b1;
b1.a = 10;
b1.e1 = e::positive;
assert(a1 == b1);
}
输出是:
a.out: main.cpp:44: int main(): Assertion `a1 == b1' failed.
这是错误的,因为其中两个类是相同的。
但是,如果我将代码行从更改e e1 : 1;
为e e1;
它会给出正确的结果。
首先我想知道 : 在这种情况下是做什么的?为什么添加这个后结果是错误的?
代码可以在这里看到。
提前致谢。