std::is_pointer_interconvertible_base_of
来自 cppreference.cn
定义于头文件 <type_traits> |
||
template< class Base, class Derived > struct is_pointer_interconvertible_base_of; |
(C++20 起) | |
如果 Derived
明确地派生自 Base
且每个 Derived
对象与它的 Base
子对象是指针可互转的,或者如果两者都是相同的非联合类(在两种情况下都忽略 cv-限定符),则提供成员常量 value
等于 true。否则 value
为 false。
如果 Base
和 Derived
都是非联合类类型,并且它们不是相同的类型(忽略 cv-限定符),则 Derived
应是完整类型;否则行为是未定义的。
如果程序为 std::is_pointer_interconvertible_base_of
或 std::is_pointer_interconvertible_base_of_v
添加特化,则行为是未定义的。
目录 |
[编辑] 辅助变量模板
template< class Base, class Derived > inline constexpr bool is_pointer_interconvertible_base_of_v = |
(C++20 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
如果 Derived 明确地派生自 Base 且每个 Derived 对象与它的 Base 子对象是指针可互转的,或者如果两者都是相同的非联合类(在两种情况下都忽略 cv-限定符),则为 true,否则为 false(public static 成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
类型
|
std::integral_constant<bool, value> |
[编辑] 注解
std::is_pointer_interconvertible_base_of_v<T, U> 即使 T
是 U
的私有或保护基类也可能为 true。
令
-
U
为完整对象类型, -
T
为 cv-限定符不弱于U
的完整对象类型, -
u
为U
的任意有效左值,
如果 std::is_pointer_interconvertible_base_of_v<T, U> 为 true,则 reinterpret_cast<T&>(u) 总是具有定义良好的结果。
如果 T
和 U
不是相同的类型(忽略 cv-限定符)且 T
是 U
的指针可互转基类,则 std::is_standard_layout_v<T> 和 std::is_standard_layout_v<U> 都为 true。
如果 T
是标准布局类类型,则 T
的所有基类(如果有)都是 T
的指针可互转基类。
特性测试宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_is_pointer_interconvertible |
201907L |
(C++20) | 指针可互转特性
|
[编辑] 示例
运行此代码
#include <type_traits> struct Foo {}; struct Bar {}; class Baz : Foo, public Bar { int x; }; class NonStdLayout : public Baz { int y; }; static_assert(std::is_pointer_interconvertible_base_of_v<Bar, Baz>); static_assert(std::is_pointer_interconvertible_base_of_v<Foo, Baz>); static_assert(not std::is_pointer_interconvertible_base_of_v<Baz, NonStdLayout>); static_assert(std::is_pointer_interconvertible_base_of_v<NonStdLayout, NonStdLayout>); int main() {}
[编辑] 参阅
(C++11) |
检查一个类型是否为另一个类型的基类 (类模板) |
(C++11) |
检查类型是否为类(而非联合)类型且没有非静态数据成员 (类模板) |
(C++11) |
检查类型是否为标准布局类型 (类模板) |