C++ 参考手册

定义于头文件 <type_traits>
template< class T >
struct has_virtual_destructor;
(C++11 起)

T 是拥有虚析构函数的类型,则提供等于 true 的成员常量 value 。对于任何其他类型, valuefalse

T 是非联合类类型,则 T 应为完整类型;否则行为未定义。

添加 has_virtual_destructor has_virtual_destructor_v (C++17 起) 的特化的程序行为未定义。

模板形参

T - 要检查的类型

辅助变量模板

template< class T >
inline constexpr bool has_virtual_destructor_v = has_virtual_destructor<T>::value;
(C++17 起)

继承自 std::integral_constant

成员常量

value
[静态]
T 拥有虚析构函数则为 true ,否则为 false
(公开静态成员常量)

成员函数

operator bool
转换对象为 bool ,返回 value
(公开成员函数)
operator()
(C++14)
返回 value
(公开成员函数)

成员类型

 
类型 定义
value_type bool
type std::integral_constant<bool, value>

注解

若类拥有公开虚析构函数,则可以从它派生,且可以通过指向基类的指针安全地删除派生类( GotW #18

示例

#include <iostream>
#include <type_traits>
#include <string>
#include <stdexcept>
 
int main()
{
    std::cout << std::boolalpha
              << "std::string has a virtual destructor? "
              << std::has_virtual_destructor<std::string>::value << '\n'
              << "std::runtime_error has a virtual destructor? "
              << std::has_virtual_destructor<std::runtime_error>::value << '\n';
}

输出:

std::string has a virtual destructor? false
std::runtime_error has a virtual destructor? true

参阅

检查类型是否拥有未被弃置的析构函数
(类模板)