std::plus<void>
来自 cppreference.cn
                    
                                        
                    
                    
                                                            
                    | 定义于头文件  <functional> | ||
| template<> class plus<void>; | (C++14 起) | |
std::plus<void> 是 std::plus 的特化,其参数与返回类型由推导获得。
| 目录 | 
[编辑] 成员类型
| 类型 | 定义 | 
| is_transparent | 未指定 | 
[编辑] 成员函数
|  operator() | 返回两个参数的和 (public member function) | 
std::plus<void>::operator()
| template< class T, class U > constexpr auto operator()( T&& lhs, U&& rhs ) const | ||
返回 lhs 与 rhs 之和。
参数
| lhs, rhs | - | 要求和的值 | 
返回值
std::forward<T>(lhs) + std::forward<U>(rhs).
[编辑] 示例
运行此代码
#include <functional> #include <iostream> int main() { auto string_plus = std::plus<void>{}; // “void” can be omitted std::string a = "Hello "; const char* b = "world"; std::cout << string_plus(a, b) << '\n'; }
输出
Hello world


