std::plus<void>
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <functional> 中 |
||
template<> class plus<void>; |
(自 C++14 起) | |
std::plus<void> 是 std::plus 的特化,参数和返回值类型是推断的。
内容 |
[编辑] 成员类型
类型 | 定义 |
is_transparent
|
未指定 |
[编辑] 成员函数
operator() |
返回两个参数的和 (公有成员函数) |
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