is_nothrow_copy_constructible 类

测试类型是否包含 nothrow 复制构造函数。

语法

template <class Ty>
struct is_nothrow_copy_constructible;

参数

Ty
要查询的类型。

注解

如果类型 Ty 具有 nothrow 复制构造函数,则类型谓词的实例将保留为 true,否则保留为 false。

要求

标头:<type_traits>

命名空间: std

另请参阅

<type_traits>