std::is_pointer_interconvertible_base_of
定义于头文件 <type_traits>
|
||
template< class Base, class Derived > struct is_pointer_interconvertible_base_of; |
(C++20 起) | |
若 Derived
无歧义地派生自 Base
且每个 Derived
对象均与其 Base
子对象指针可互转换,或它们均为相同的非联合类类型(两种情况下都忽略 cv 限定),则提供等于 true 的成员常量 value
。否则 value
为 false 。
若 Base
与 Derived
均为非联合类类型且不是同一类型(忽略 cv 限定),则 Derived
应当为完整类型;否则行为未定义。
添加 is_pointer_interconvertible_base_of
或 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 (公开静态成员常量) |
成员函数
operator bool |
转换对象为 bool ,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool
|
type
|
std::integral_constant<bool, value> |
注解
即使 T
为 U
的私有或受保护基类, std::is_pointer_interconvertible_base_of_v<T, U> 亦可能为 true 。
令
-
U
为完整对象类型, -
T
为 cv 限定不少于U
的完整对象类型, -
u
为任何合法的U
左值,
则 reinterpret_cast<T&>(u) 始终有良定义的结果,若 std::is_pointer_interconvertible_base_of_v<T, U> 为 true 。
若 T
与 U
不是同一类型(忽略 cv 限定)且 T
为 U
的指针可互转换基类,则 std::is_standard_layout_v<T> 与 std::is_standard_layout_v<U> 均为 true 。
若 T
为空类类型,则 T
的所有基类(若存在)均为 T
的指针可互转换基类。
若 T
为非空标准布局类类型,则 T
的所有非空基类(若存在)均为 T
的指针可互转换基类,此情况下某些空空基类亦可能为指针可互转换基类。
示例
#include <iostream> #include <type_traits> struct Foo {}; struct Bar {}; class Baz : Foo, public Bar { int x; }; class NonStdLayout : public Baz { int y; }; int main() { std::cout << std::boolalpha << std::is_pointer_interconvertible_base_of_v<Bar, Baz> << '\n' << std::is_pointer_interconvertible_base_of_v<Foo, Baz> << '\n'; << std::is_pointer_interconvertible_base_of_v<Baz, NonStdLayout> << '\n' << std::is_pointer_interconvertible_base_of_v<NonStdLayout, NonStdLayout> << '\n'; }
输出:
true true false true
参阅
(C++11) |
检查一个类型是否派生自另一个类型 (类模板) |
(C++11) |
检查类型是否为类(但非联合体)类型且无非静态数据成员 (类模板) |
(C++11) |
检查是否是一个标准布局类型 (类模板) |