首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

std::is_trivially_copy_constructible

Defined in header <type_traits>

template< class T > struct is_copy_constructible;

(1)

(since C++11)

template< class T > struct is_trivially_copy_constructible;

(2)

(since C++11)

template< class T > struct is_nothrow_copy_constructible;

(3)

(since C++11)

1%29T不是可引用的类型%28i。E.,可能是cv-符合条件的void类的函数类型。简历-限定符-seq或者是参-限定符%29,提供成员常量。value等于false否则,提供成员常量。value等于std::is_constructible<T, const T&>::value...

2%29与%281%29相同,但使用std::is_trivially_constructible<T, const T&>...

3%29与%281%29相同,但使用std::is_nothrow_constructible<T, const T&>...

T为完整类型,%28可能是cv-合格%29void,或者一系列未知的界限。否则,行为就没有定义。

辅助变量模板

template< class T > inline constexpr bool is_copy_constructible_v = is_copy_constructible<T>::value;

(since C++17)

template< class T > inline constexpr bool is_trivially_copy_constructible_v = is_trivially_copy_constructible<T>::value;

(since C++17)

template< class T > inline constexpr bool is_nothrow_copy_constructible_v = is_nothrow_copy_constructible<T>::value;

(since C++17)

继承自STD:积分[医]常量

成员常数

value static

true if T is copy-constructible , false otherwise (public static member constant)

成员函数

operator bool

converts the object to bool, returns value (public member function)

operator() (C++14)

returns value (public member function)

成员类型

Type

Definition

value_type

bool

type

std::integral_constant<bool, value>

可能的实施

模板<class T>结构是[医]复制[医]可构造性:std::is[医]可构造<T,type Name std::add[医]洛值[医]引用<type Name std::add[医]康斯特<T>*类型>::类型>>{};模板<class T>结构是[医]琐碎[医]复制[医]可构造性:std::is[医]琐碎[医]可构造<T,type Name std::add[医]洛值[医]引用<type Name std::add[医]康斯特<T>*类型>::类型>>{};模板<class T>结构是[医]无抛[医]复制[医]可构造性:std::is[医]无抛[医]可构造<T,type Name std::add[医]洛值[医]引用<type Name std::add[医]康斯特<T>*类型>::类型>>{};

*。

注记

在许多实现中,is_nothrow_copy_constructible还检查析构函数是否抛出,因为它有效。noexcept(T(arg)).同样适用于is_trivially_copy_constructible,在这些实现中,还要求析构函数是微不足道的:gcc bug 51452lwg第2116期...

二次

代码语言:javascript
复制
#include <iostream>
#include <type_traits>
 
struct Ex1 {
    std::string str; // member has a non-trivial copy ctor
};
struct Ex2 {
    int n;
    Ex2(const Ex2&) = default; // trivial and non-throwing
};
 
int main() {
    std::cout << std::boolalpha << "Ex1 is copy-constructible? "
              << std::is_copy_constructible<Ex1>::value << '\n'
              << "Ex1 is trivially copy-constructible? "
              << std::is_trivially_copy_constructible<Ex1>::value << '\n'
              << "Ex2 is trivially copy-constructible? "
              << std::is_trivially_copy_constructible<Ex2>::value << '\n'
              << "Ex2 is nothrow copy-constructible? "
              << std::is_nothrow_copy_constructible<Ex2>::value << '\n';
}

二次

产出:

二次

代码语言:javascript
复制
Ex1 is copy-constructible? true
Ex1 is trivially copy-constructible? false
Ex2 is trivially copy-constructible? true
Ex2 is nothrow copy-constructible? true

二次

另见

is_constructibleis_trivially_constructibleis_nothrow_constructible (C++11)(C++11)(C++11)

checks if a type has a constructor for specific arguments (class template)

is_default_constructibleis_trivially_default_constructibleis_nothrow_default_constructible (C++11)(C++11)(C++11)

checks if a type has a default constructor (class template)

is_move_constructibleis_trivially_move_constructibleis_nothrow_move_constructible (C++11)(C++11)(C++11)

checks if a type can be constructed from an rvalue reference (class template)

代码语言:txt
复制
 © cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

扫码关注腾讯云开发者

领取腾讯云代金券