我是靠谱客的博主 斯文百褶裙,最近开发中收集的这篇文章主要介绍utilities——C++常用仿函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <functional>
  • unary_function

    // STL 规定,每一个Adaptable(可配接的) Unary Function 都应该继承此类别
    template <class Arg, class Result>
    struct unary_function
    {
        typedef Arg argument_type;
        typedef Result result_type;
    }
  • binary_function

    // STL 规定,每一个 Adaptable Binary Function 都应该继承此类别
    template<class Arg1, class Arg2, class Result>
    struct binary_function
    {
        typedef Arg1 first_argument_type;
        typedef Arg2 second_argument_type;
        typedef Result result_type;
    }

greater<>/less<>

// 大的在前,小的在后,也即在排序时,逆序输出
template<typename T>
struct greater :public binary_function<T, T, bool>
{
    result_type operator()(const first_result_type& left, const second_result_type& right) const
    {
        return left > right;
    }
}

如果我们要实现一个绝对值大的在前,绝对值小的在后,也即比较的是绝对值的大小。

template<typename T>
struct abs_greater :public binary_function<T, T, bool>
{
    bool operator()(const T& left, const T& right) const
    {
        return abs(left) > abs(right);
    }
}

排序准则(sorting criterion)

或许因为不想,或许因为不能,无法使用一般的 operator<对这些对象排序,而是必须以某种特定的规则(通常基于某些成员函数)来排序,此时便是 function objects 施展身手的舞台;

class Person
{
public:
    std::string firstname() const;
    std::string secondname() const;
    ...
}

class PersonSortCriterion
{
public:
    bool operator() (const Person& left, const Person& right) const
    {
        return left.lastname() < right.lastname() || 
            (left.lastname() == right.lastname() && left.firstname() < right.firstname());
    }
}

最后

以上就是斯文百褶裙为你收集整理的utilities——C++常用仿函数的全部内容,希望文章能够帮你解决utilities——C++常用仿函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部