命名空间
变体
操作

std::mem_fun_ref

来自 cppreference.com
< cpp‎ | utility‎ | functional
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
函数调用
(C++17)(C++23)
标识函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧的绑定器和适配器
(until C++17*)
(until C++17*)
(until C++17*)
(until C++17*)  
(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
(until C++17*)(until C++17*)
(until C++17*)(until C++17*)

mem_fun_ref
(until C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(until C++20*)
(until C++20*)
 
定义在头文件 <functional>
template< class Res, class T >
std::mem_fun_ref_t<Res,T> mem_fun_ref( Res (T::*f)() );
(1) (C++11 中已弃用)
(C++17 中已移除)
template< class Res, class T >
std::const_mem_fun_ref_t<Res,T> mem_fun_ref( Res (T::*f)() const );
(1) (C++11 中已弃用)
(C++17 中已移除)
template< class Res, class T, class Arg >
std::mem_fun1_ref_t<Res,T,Arg> mem_fun_ref( Res (T::*f)(Arg) );
(2) (C++11 中已弃用)
(C++17 中已移除)
template< class Res, class T, class Arg >
std::const_mem_fun1_ref_t<Res,T,Arg> mem_fun_ref( Res (T::*f)(Arg) const );
(2) (C++11 中已弃用)
(C++17 中已移除)

创建成员函数包装器对象,从模板参数中推断目标类型。包装器对象期望一个类型为 T 的对象的引用作为其 operator() 的第一个参数。

1) 有效地调用 std::mem_fun_ref_t<S,T>(f)std::const_mem_fun_ref_t<S,T>(f).
2) 有效地调用 std::mem_fun1_ref_t<S,T>(f)std::const_mem_fun1_ref_t<S,T>(f).

此函数和相关类型在 C++11 中被弃用,并在 C++17 中被移除,以支持更通用的 std::mem_fnstd::bind,它们都从成员函数创建可调用适配器兼容的函数对象。

内容

[编辑] 参数

f - 指向要为其创建包装器的成员函数的指针

[编辑] 返回值

包装 f 的函数对象。

[编辑] 异常

可能会抛出实现定义的异常。

[编辑] 注意

std::mem_funstd::mem_fun_ref 之间的区别在于,前者生成一个需要对象指针作为参数的函数包装器,而后者需要一个引用。

[编辑] 示例

使用 std::mem_fun_ref 绑定 std::string 的成员函数 size()

#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <string>
#include <vector>
 
int main()
{
    std::vector<std::string> v = {"once", "upon", "a", "time"};
    std::transform(v.cbegin(), v.cend(),
                   std::ostream_iterator<std::size_t>(std::cout, " "),
                   std::mem_fun_ref(&std::string::size));
}

输出

4 4 1 4

[编辑] 另请参见

(已在 C++11 中弃用)(已在 C++17 中移除)
从指向成员函数的指针创建一个包装器,可以用指向对象的指针调用
(函数模板) [编辑]