考虑std::rel_ops
这里的例子:
http://en.cppreference.com/w/cpp/utility/rel_ops/operator_cmp
#include <iostream>
#include <utility>
struct Foo {
int n;
};
bool operator==(const Foo& lhs, const Foo& rhs)
{
return lhs.n == rhs.n;
}
bool operator<(const Foo& lhs, const Foo& rhs)
{
return lhs.n < rhs.n;
}
int main()
{
Foo f1 = {1};
Foo f2 = {2};
using namespace std::rel_ops;
std::cout << std::boolalpha;
std::cout << "not equal? : " << (bool) (f1 != f2) << '\n';
std::cout << "greater? : " << (bool) (f1 > f2) << '\n';
std::cout << "less equal? : " << (bool) (f1 <= f2) << '\n';
std::cout << "greater equal? : " << (bool) (f1 >= f2) << '\n';
}
(bool)
演员表的目的是什么?不是(f1 != f2)
已经类型了bool
吗?