任何定义了函数调用操作符的对象都是函数对象。C++ 支持创建、操作新的函数对象,同时也提供了许多内置的函数对象。
C++ 针对常用的算术和逻辑运算定义了很多函数对象:
std::less
template< class T > |
(C++14 前) | |
template< class T = void > |
(C++14 起) |
进行比较的函数对象。调用类型 T
上的 operator< ,除非特化。
std::less
的特化为任何指针类型产生严格全序,即使内建的 operator< 不如此。严格全序在 std::less 、 std::greater 、 std::less_equal 和 std::greater_equal 对该指针类型的特化间一致,且亦与对应的内建运算符( <
、 >
、 <=
及 >=
)所强加的部分顺序一致。
若特化 |
(C++14 起) |
标准库提供
|
(C++14 起) |
|
(C++20 前 |
operator() |
检查第一参数是否小于第二个 (公开成员函数) |
bool operator()( const T& lhs, const T& rhs ) const; |
(C++14 前) | |
constexpr bool operator()( const T& lhs, const T& rhs ) const; |
(C++14 起) |
检查 lhs
是否小于 rhs
。
lhs, rhs | - | 要比较的值 |
若 lhs < rhs 则为 true ,否则为 false 。
(无)
constexpr bool operator()(const T &lhs, const T &rhs) const
{
return lhs < rhs;
}
#include
#include
struct Cell
{
int x;
int y;
Cell() = default;
Cell(int a, int b): x(a), y(b) {}
Cell(const Cell &cell)
{
x = cell.x;
y = cell.y;
}
Cell &operator+(const Cell &cell)
{
x += cell.x;
y += cell.y;
return *this;
}
Cell &operator+=(const Cell &cell)
{
x += cell.x;
y += cell.y;
return *this;
}
Cell &operator*=(int n)
{
x *= n;
y *= n;
return *this;
}
Cell &operator++()
{
x += 1;
y += 1;
return *this;
}
friend Cell operator +(const Cell &cell1, const Cell &cell2)
{
Cell cell = cell1;
cell += cell2;
return cell;
}
friend Cell operator *(const Cell &cell1, const Cell &cell2)
{
Cell cell = {cell1.x * cell2.x, cell1.y * cell2.y};
return cell;
}
friend Cell operator /(const Cell &cell1, const Cell &cell2)
{
Cell cell = {cell1.x / cell2.x, cell1.y / cell2.y};
return cell;
}
friend Cell operator %(const Cell &cell1, const Cell &cell2)
{
Cell cell = {cell1.x % cell2.x, cell1.y % cell2.y};
return cell;
}
friend bool operator ==(const Cell &cell1, const Cell &cell2)
{
return cell1.x == cell2.x && cell1.y == cell2.y;
}
friend bool operator !=(const Cell &cell1, const Cell &cell2)
{
return cell1.x != cell2.x && cell1.y != cell2.y;
}
friend bool operator <(const Cell &cell1, const Cell &cell2)
{
if (cell1.x == cell2.x)
{
return cell1.y < cell2.y;
}
else
{
return cell1.x < cell2.x;
}
}
friend bool operator >(const Cell &cell1, const Cell &cell2)
{
if (cell1.x == cell2.x)
{
return cell1.y > cell2.y;
}
else
{
return cell1.x > cell2.x;
}
}
};
std::ostream &operator<<(std::ostream &os, const Cell &cell)
{
os << "{" << cell.x << "," << cell.y << "}";
return os;
}
int main()
{
std::cout << std::boolalpha;
int *ptr = nullptr;
std::cout << "std::less()(1023, 1024): "
<< std::less()(ptr, nullptr) << std::endl;
std::cout << "std::less()(50, 2): "
<< std::less()(50, 2) << std::endl;
std::cout << "std::less()('a', 97): "
<< std::less()('a', 97) << std::endl;
std::cout << "std::less()(1023, 1024): "
<< std::less()(1023, 1024) << std::endl;
std::cout << "std::less()(1023, 1024): "
<< std::less()(1023, 1024) << std::endl;
std::cout << "std::less()(1023, 1024): "
<< std::less()(1023, 1024) << std::endl;
std::cout << "std::less()(1023, 1024): "
<< std::less()(8, 32) << std::endl;
std::cout << "std::less()(123, 456): "
<< std::less()(123, 456) << std::endl;
std::cout << "std::less()(101, 202): "
<< std::less()(101, 202) << std::endl;
std::cout << "std::less()(10230, 10240): "
<< std::less()(10230, 10240) << std::endl;
std::cout << "std::less()(1023, 1024): "
<< std::less()(8, 32) << std::endl;
std::cout << "std::less()(123, 456): "
<< std::less()(123, 456) << std::endl;
std::cout << "std::less()(101, 202): "
<< std::less()(101, 202) << std::endl;
std::cout << "std::less()(10230, 10240): "
<< std::less()(10230, 10240) << std::endl;
std::cout << "std::less()(3.14, 3.14): "
<< std::less()(3.14, 3.14) << std::endl;
std::cout << "std::less()(3.14, 3.14): "
<< std::less()(3.14, 3.14) << std::endl;
std::cout << "std::less()(3, 3): "
<< std::less()(3, 3) << std::endl;
std::cout << "std::less()(3.56, 3.14): "
<< std::less()(3.56, 3.14) << std::endl;
std::cout << "std::less()(3.14, 3.14): "
<< std::less()(3.34, 3.34) << std::endl;
std::cout << "std::less()(Cell{101, 101}, Cell{202, 202}): "
<< std::less()(Cell{101, 101}, Cell{202, 202}) << std::endl;
std::cout << "std::less()(\"I am a \", \"handsome programmer\"):"
<< std::less()("I am a ", "handsome programmer") << std::endl;
return 0;
}
| |
std::less()(1023, 1024): false
std::less()(50, 2): false
std::less()('a', 97): false
std::less()(1023, 1024): true
std::less()(1023, 1024): true
std::less()(1023, 1024): true
std::less()(1023, 1024): true
std::less()(123, 456): true
std::less()(101, 202): true
std::less()(10230, 10240): true
std::less()(1023, 1024): true
std::less()(123, 456): true
std::less()(101, 202): true
std::less()(10230, 10240): true
std::less()(3.14, 3.14): false
std::less()(3.14, 3.14): false
std::less()(3, 3): false
std::less()(3.56, 3.14): false
std::less()(3.14, 3.14): false
std::less()(Cell{101, 101}, Cell{202, 202}): true
std::less()("I am a ", "handsome programmer"):true |