C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- C++ 标准库扩展
- std::experimental::pmr::resource_adaptor
- std::experimental::invocation_type, std::experimental::raw_invocation_type
- C++ 标准库扩展,版本 2
- std::experimental::propagate_const
- std::experimental::propagate_const<T>::propagate_const
- std::experimental::propagate_const<T>::operator=
- std::experimental::propagate_const<T>::swap
- std::experimental::propagate_const<T>::get
- std::experimental::propagate_const<T>::operator bool
- std::experimental::propagate_const<T>::operator*, std::experimental::propagate_const<T>::operator->
- std::experimental::propagate_const<T>::operator element_type*, std::experimental::propagate_const<T>::operator const element_type*
- operator==,!=,<,<=,>,>=(std::experimental::propagate_const)
- std::experimental::swap(std::experimental::propagate_const)
- std::experimental::get_underlying
- std::hash(std::experimental::propagate_const)
- std::equal_to, not_equal_to, less, greater, less_equal, greater_equal(std::experimental::propagate_const)
- 并行扩展
- 并行扩展,版本 2
- std::experimental::sample
- std::experimental::to_array
- std::experimental::source_location
- std::experimental::not_fn
- std::experimental::future
- std::experimental::shared_future
- std::experimental::ostream_joiner
- std::experimental::randint
- std::experimental::observer_ptr
- std::experimental::is_detected, std::experimental::detected_t, std::experimental::detected_or
- C++ 标准库扩展,版本 3
- std::experimental::scope_exit
- std::experimental::scope_fail
- std::experimental::scope_success
- std::experimental::unique_resource
- 并发扩展
- 制约与概念
- 范围扩展
- std::experimental::function
- std::experimental::nonesuch
- std::experimental::reseed
- std::experimental::shuffle
- std::experimental::when_all
- std::experimental::barrier
- std::experimental::latch
- std::experimental::make_array
- 数学特殊函数
- 文件系统库
- std::experimental::erased_type
- std::experimental::when_any
- std::experimental::make_ready_future
- std::experimental::make_exceptional_future
- std::experimental::flex_barrier
- 注释
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >实验性 C++ 特性 > std::experimental::propagate_const
std::experimental::propagate_const
template<class T> class propagate_const; |
(库基础 TS v2) | |
std::experimental::propagate_const
是为指针和仿指针对象传播 const 的包装器。如名所示,在通过 const
访问路径访问时,它把被包装指针当做指向 const
的指针。
若底层的仿指针类型类满足可移动构造 (MoveConstructible) 和可移动赋值 (MoveAssignable) 的要求,则该类满足对应概念,但 propagate_const
既非可复制构造 (CopyConstructible) 亦非可复制赋值 (CopyAssignable) 。
类型要求 | ||
-T 必须是下面指定的对象指针类型或仿指针类型。若 T 为数组类型、引用类型、指向函数指针类型、指向(可为 cv 限定的) void 指针类型,或若 decltype(*std::declval<T&>()) 不是左值引用类型,则程序为病式。
|
仿指针类型上的要求
若 T
为类类型,则它必须满足此节中的要求。
给定
-
t
,T
类型的可修改左值表达式 -
ct
,绑定到T
的const T&
-
element_type
,对象类型
下列表达式必须合法并拥有其指定的效果:
表达式 | 返回类型 | 前提条件 | 操作语义 |
---|---|---|---|
t.get() | element_type*
|
||
ct.get() | element_type* 或 const element_type*
|
t.get() == ct.get() | |
*t | element_type&
|
t.get() != nullptr | *t 与 *(t.get()) 指代同一对象
|
*ct | element_type& 或 const element_type&
|
ct.get() != nullptr | *ct 与 *(ct.get()) 指代同一对象
|
t.operator->() | element_type*
|
t.get() != nullptr | t.operator->() == t.get() |
ct.operator->() | element_type* 或 const element_type*
|
ct.get() != nullptr | ct.operator->() == ct.get() |
(bool)t | bool
|
(bool)t 等价于 t.get() != nullptr | |
(bool)ct | bool
|
(bool)ct 等价于 ct.get() != nullptr |
还有, T
和 const T
应当可按语境转换为 bool
。
另外,若 T
可隐式转换为 element_type*
,则 (element_type*)t
应当等于 t.get()
。类似地,若 const T
可隐式转换为 const element_type*
,则 (const element_type*)ct
应当等于 ct.get()
。
成员类型
成员类型 | 定义 |
element_type | std::remove_reference_t<decltype(*std::declval<T&>())> , T 所指向对象的类型
|
成员函数
构造新的 propagate_const (公开成员函数) | |
(析构函数) (隐式声明) |
销毁 propagate_const 并销毁所含指针 (公开成员函数) |
赋值 propagate_const 对象 (公开成员函数) | |
交换被包装指针 (公开成员函数) | |
观察器 | |
返回指向被包装指针所指向对象的指针 (公开成员函数) | |
检查被包装指针是否为空 (公开成员函数) | |
解引用被包装指针 (公开成员函数) | |
到指针的隐式转换函数 (公开成员函数) |
非成员函数
与另一 propagate_const 、另一指针,或与 nullptr 比较 (函数模板) | |
特化 swap 算法 (函数模板) | |
获取到被包装仿指针对象的引用 (函数模板) |
辅助类
propagate_const 的哈希支持 (类模板特化) | |
标准比较函数对象对 propagate_const 的特化 (类模板特化) |
示例
运行此代码
#include <iostream> #include <memory> #include <experimental/propagate_const> struct X { void g() const { std::cout << "g (const)\n"; } void g() { std::cout << "g (non-const)\n"; } }; struct Y { Y() : m_ptrX(std::make_unique<X>()) { } void f() const { std::cout << "f (const)\n"; m_ptrX->g(); } void f() { std::cout << "f (non-const)\n"; m_ptrX->g(); } std::experimental::propagate_const<std::unique_ptr<X>> m_ptrX; }; int main() { Y y; y.f(); const Y cy; cy.f(); }
输出:
f (non-const) g (non-const) f (const) g (const)