std::mem_fun_ref
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <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() 的第一个参数。
此函数和相关类型在 C++11 中被弃用,并在 C++17 中被移除,以支持更通用的 std::mem_fn 和 std::bind,它们都从成员函数创建可调用适配器兼容的函数对象。
内容 |
[编辑] 参数
f | - | 指向要为其创建包装器的成员函数的指针 |
[编辑] 返回值
包装 f 的函数对象。
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 注意
std::mem_fun
和 std::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 中移除) |
从指向成员函数的指针创建一个包装器,可以用指向对象的指针调用 (函数模板) |