std::ref, std::cref
来自 cppreference.com
< cpp | utility | functional
在头文件 <functional> 中定义 |
||
template< class T > std::reference_wrapper<T> ref( T& t ) noexcept; |
(1) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class T > ref( std::reference_wrapper<T> t ) noexcept; |
(2) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class T > void ref( const T&& ) = delete; |
(3) | (自 C++11 起) |
template< class T > std::reference_wrapper<const T> cref( const T& t ) noexcept; |
(4) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class T > std::reference_wrapper<const T> |
(5) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class T > void cref( const T&& ) = delete; |
(6) | (自 C++11 起) |
函数模板 ref
和 cref
是辅助函数,它们使用 模板参数推断 来确定结果的模板参数,从而生成 std::reference_wrapper 类型的对象。
|
(自 C++20 起) |
内容 |
[编辑] 参数
t | - | 需要包装的对象的左值引用或 std::reference_wrapper 的实例 |
[编辑] 返回值
1) std::reference_wrapper<T>(t)
2) t
4) std::reference_wrapper<const T>(t)
5) t
3,6) 右值引用包装器已删除。
[edit] 示例
运行此代码
#include <functional> #include <iostream> void f(int& n1, int& n2, const int& n3) { std::cout << "In function: " << n1 << ' ' << n2 << ' ' << n3 << '\n'; ++n1; // increments the copy of n1 stored in the function object ++n2; // increments the main()'s n2 // ++n3; // compile error } int main() { int n1 = 1, n2 = 2, n3 = 3; std::function<void()> bound_f = std::bind(f, n1, std::ref(n2), std::cref(n3)); n1 = 10; n2 = 11; n3 = 12; std::cout << "Before function: " << n1 << ' ' << n2 << ' ' << n3 << '\n'; bound_f(); std::cout << "After function: " << n1 << ' ' << n2 << ' ' << n3 << '\n'; }
输出
Before function: 10 11 12 In function: 1 11 12 After function: 10 12 12
[edit] 缺陷报告
以下行为更改缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3146 | C++11 | 解包重载有时会导致错误 | 始终有效 |
[edit] 另请参见
(C++11) |
可复制构造 和 可复制赋值 引用包装器 (类模板) |