3

考虑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吗?

4

1 回答 1

2

是的,这里的演员阵容bool是多余的。我冒昧地将它们从文档中删除。

于 2012-12-17T16:34:23.383 回答