C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- std::common_reference_with
- std::convertible_to
- std::same_as
- std::derived_from
- std::common_with
- std::integral
- std::signed_integral
- std::unsigned_integral
- std::floating_point
- std::swappable, std::swappable_with
- std::destructible
- std::constructible_from
- std::default_initializable
- std::move_constructible
- std::copy_constructible
- std::assignable_from
- std::equality_comparable, std::equality_comparable_with
- std::totally_ordered, std::totally_ordered_with
- std::movable
- std::copyable
- std::semiregular
- std::regular
- std::invocable, std::regular_invocable
- std::predicate
- std::relation
- std::equivalence_relation
- std::strict_weak_order
- boolean-testable
- 注释
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >概念库 (C++20) > std::common_with
std::common_with
定义于头文件 <concepts>
|
||
template <class T, class U> concept common_with = |
(C++20 起) | |
概念 common_with<T, U>
指定二个类型 T
与 U
共享均能转换到的共用类型(以 std::common_type_t 计算)。
语义要求
T 与 U 实现 common_with<T, U>
,仅若给定保持相等性的表达式 t1
、 t2
、 u1
和 u2
,且它们满足 decltype((t1)) 与 decltype((t2)) 均为 T
而 decltype((u1)) 与 decltype((u2)) 均为 U
,且
- std::common_type_t<T, U>(t1) 等于 std::common_type_t<T, U>(t2) 当且仅当
t1
等于t2
;而 - std::common_type_t<T, U>(u1) 等于 std::common_type_t<T, U>(u2) 当且仅当
u1
等于u2
。
换言之,转换到共用类型必须保持相等性。
相等性保持
若表达式对给定的相等输入产生相等输出,则它保持相等性。
- 表达式的输入由其运算数组成。
- 表达式的输出由其结果和表达式所修改的所有运算数(若存在)组成。
进一步要求每个要求保持相等性的表达式都稳定:这种表达式带相同输入对象的二次求值必须拥有相等的输出,而无任何对这些输入对象的显式中间修改。
参阅
(C++11) |
确定一组类型的公共类型 (类模板) |
确定类型组的共用引用类型 (类模板) | |
(C++20) |
指定两个类型共有一个公共引用类型 (概念) |