std::less是a是用于执行比较的函数类(<functional.h>)的成员。它被定义为一个函数对象类,用于小于不等式的比较,该比较器根据条件返回布尔值。这可用于更改给定函数的函数。它可以与各种标准算法一起使用,例如sort,lower_bound等。
头文件:
#include <functional.h>
模板类别:
template <class T> struct less { // Declaration of the less operation bool operator() (const T& x, const T& y) const { return x < y; } // Type of first parameter typedef T first_argument_type; // Type of second parameter typedef T second_argument_type; // The result is returned // as bool type typedef bool result_type; };
用法:
std::less()
参数:该函数接受参数T的类型作为参数,以供函数调用进行比较。
返回类型:它根据条件返回布尔值(让a和b为2个元素):
- 真正:如果a小于b。
- 假:如果a大于b。
下面是C++中std::less的图示:
程序1:
// C++ program to illustrate
// std::less function
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
// Function to print array arr[]
void printArray(int arr[], int N)
{
for (int i = 0; i < N; i++) {
cout << arr[i] << ' ';
}
}
// Driver Code
int main()
{
int arr[] = { 26, 23, 21, 22,
28, 27, 25, 24 };
int N = sizeof(arr) / sizeof(arr[0]);
// Sort the array in increasing order
sort(arr, arr + N, less<int>());
// Print sorted array
printArray(arr, N);
return 0;
}
输出:
21 22 23 24 25 26 27 28
程序2:
// C++ program to illustrate less
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
// Template
template <typename A, typename B,
typename U = std::less<int> >
// Function to check if a < b or not
bool f(A a, B b, U u = U())
{
return u(a, b);
}
// Driver Code
int main()
{
int X = 1, Y = 2;
// If X is less than Y or not
cout << std::boolalpha;
cout << f(X, Y) << '\n';
X = 2, Y = -1;
// If X is less than Y or not
cout << f(X, Y) << '\n';
return 0;
}
输出:
true false
参考: http://www.cplusplus.com/reference/functional/less/
相关用法
- C语言 strtok()、strtok_r()用法及代码示例
- C语言 memset()用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ wcscpy()用法及代码示例
- C++ wcscmp()用法及代码示例
- C# Array.GetValue()方法用法及代码示例
- C++ ratio_equal()用法及代码示例
- C++ std::equal_to用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ multiset lower_bound()用法及代码示例
- C++ multiset upper_bound()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ forward_list max_size()用法及代码示例
- C++ std::allocator()用法及代码示例
- C++ array data()用法及代码示例
- C++ multiset size()用法及代码示例
注:本文由纯净天空筛选整理自akash_salvi大神的英文原创作品 std::less in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。