std::ptr_fun
< cpp | utility | functional
定义于头文件 <functional>
|
||
template< class Arg, class Result > std::pointer_to_unary_function<Arg,Result> |
(1) | (C++11 中弃用) (C++17 中移除) |
template< class Arg1, class Arg2, class Result > std::pointer_to_binary_function<Arg1,Arg2,Result> |
(2) | (C++11 中弃用) (C++17 中移除) |
创建函数包装器对象( std::pointer_to_unary_function 或 std::pointer_to_binary_function ),从模板实参推导目标类型。
1) 等效地调用 std::pointer_to_unary_function<Arg,Result>(f) 。
2) 等效地调用 std::pointer_to_binary_function<Arg1,Arg2,Result>(f) 。
此函数与关联类型从 C++11 起被弃用,因为使用更通用的 std::function 和 std::ref 更好,它们都可以从简单函数创建与适配器兼容的函数对象。
参数
f | - | 为之创建包装的指向函数指针 |
返回值
包装 f
的函数对象。
异常
(无)
示例
运行此代码
#include <string> #include <iostream> #include <algorithm> #include <functional> bool isvowel(char c) { return std::string("aeoiuAEIOU").find(c) != std::string::npos; } int main() { std::string s = "Hello, world!"; std::copy_if(s.begin(), s.end(), std::ostreambuf_iterator<char>(std::cout), std::not1(std::ptr_fun(isvowel))); // C++11 替用方案: // std::not1(std::cref(isvowel))); // std::not1(std::function<bool(char)>(isvowel))); }
输出:
Hll, wrld!