0
点赞
收藏
分享

微信扫一扫

C++ Lambda 表达式作为类模板参数

那小那小 2022-02-02 阅读 46
c++

学习C++ rbtree时发现第四个模板参数为 class _Compare,若不使用标准库自带的less<>等模板目前我只发现通过构造类编写operator()或通过std::function<>才能通过编译

#include <iostream>
#include <deque>
#include <bits/stl_tree.h>
#include <functional>
using namespace std;

template <class T>
struct identity : public unary_function<T, T>
{
    const T &operator()(const T &x) const
    {
        return x;
    }
};
struct Mycompare{
	bool operator()(const int a,const int b){return a>b;}
};
int main()
{
    //使用less<int>等模板
    _Rb_tree<int, int, identity<int>, less<int>> tree1;

    //自己建立class 重写operator()
    _Rb_tree<int, int, identity<int>,Mycompare> tree2;

    //在这里不能使用lambda,因为rbtree接受一个class
    //_Rb_tree<int, int, identity<int>,std::function<bool(const int a, const int b)>> tree3;

    //若想使用可使用std::function<>
	_Rb_tree<int, int, identity<int>,std::function<bool(const int a, const int b)>> tree3;
   	return 0;
}

举报

相关推荐

lambda表达式c++

C++ lambda表达式

C++——lambda表达式

【C++】lambda表达式

C++特性-lambda表达式

【C++】 Lambda表达式详解

C++ lambda表达式详解

0 条评论