C++ STL functional.h

本文深入探讨了C++ Standard Template Library (STL) 中的 functional 头文件,重点介绍了该模块提供的函数对象(functors)、高阶函数如bind、函数适配器等在编程中的应用和优势。通过实例代码,读者可以更好地理解如何利用 functional.h 提升代码的复用性和效率。
摘要由CSDN通过智能技术生成

全部代码

#pragma once

// 包含函数对象和哈希函数 functor仿函数

namespace tinySTL {

	// 定义一元函数的参数类别和返回值型别
	template<typename Arg, typename Result>
	struct unarg_function {
		using argument_type = Arg;
		using result_type = Result;
	};

	// 二元函数
	template<typename Arg1, typename Arg2, typename Result>
	struct binary_function {
		using first_argument_type = Arg1;
		using second_argument_type = Arg2;
		using result_type = Result;
	};

	// 函数对象:加法
	template<typename T>
	struct plus : public binary_function<T, T, T> {
		T operator()(const T& x, const T& y) const { return x + y; }
	};

	template<typename T>
	struct minus :public binary_function<T, T, T> {
		T operator()(const T& x, const T& y) const { return x - y; }
	};

	// 函数对象:乘法
	template <class T>
	struct multiplies :public binary_function<T, T, T>
	{
		T operator()(const T& x, const T& y) const { retur
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值