<type_traits>头文件中提供了C++ STL的std::is_nothrow_copy_assignable模板。 C++ STL的std::is_nothrow_copy_assignable模板用于检查T是否为副本可分配类型,并且众所周知它不会引发任何异常。它返回布尔值true或false。
头文件:
#include<type_traits>
模板类别:
template< class T > struct is_nothrow_copy_assignable;
用法:
std::is_nothrow_copy_assignable< datatype >::value << '\n'
参数:模板std::is_nothrow_copy_assignable接受单个参数T(特质类)以检查T是否为is_nothrow_copy_assignable类型。
返回值:
- True:如果给定的数据类型T是可分配的Nohrow副本。
- False:如果给定的数据类型T不是可分配的Nohrow副本。
下面是演示C++中std::is_nothrow_copy_assignable的程序:
程序:
// C++ program to illustrate
// std::is_nothrow_copy_assignable
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
// Declare structures X and Y
struct X {
};
struct Y {
Y& operator=(const Y&)
{
return *this;
}
};
// Declare classes
class A {
};
class B {
B() {}
};
class C:B {
};
class D {
virtual void fn() {}
};
// Driver Code
int main()
{
cout << std::boolalpha;
// Check if int is is nothrow
// copy assignable or not
cout << "int:"
<< is_nothrow_copy_assignable<int>::value
<< endl;
// Check if struct X is nothrow
// copy assignable or not
cout << "struct X:"
<< is_nothrow_copy_assignable<X>::value
<< endl;
// Check if struct Y is isnothrow
// copy assignable or not
cout << "struct Y:"
<< is_nothrow_copy_assignable<Y>::value
<< endl;
// Check if int[2] is is nothrow
// copy assignable or not
cout << "int[2]:"
<< is_nothrow_copy_assignable<int[2]>::value
<< endl;
// Check if class A is a nothrow
// copy assignable or not
cout << "class A:"
<< is_nothrow_copy_assignable<A>::value
<< endl;
// Check if class B is a nothrow
// copy assignable or not
cout << "class B:"
<< is_nothrow_copy_assignable<B>::value
<< endl;
// Check if class C is a nothrow
// copy assignable or not
cout << "class C:"
<< is_nothrow_copy_assignable<C>::value
<< endl;
// Check if class D is a nothrow
// copy assignable or not
cout << "class D:"
<< is_nothrow_copy_assignable<D>::value
<< endl;
return 0;
}
输出:
int:true struct X:true struct Y:false int[2]:false class A:true class B:true class C:true class D:true
参考: http://www.cplusplus.com/reference/type_traits/is_nothrow_copy_assignable/
相关用法
- C语言 strtok()、strtok_r()用法及代码示例
- C语言 memset()用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ wcscpy()用法及代码示例
- C++ wcscmp()用法及代码示例
- C++ ratio_equal()用法及代码示例
- C++ std::equal_to用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ multiset lower_bound()用法及代码示例
- C++ multiset upper_bound()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ forward_list max_size()用法及代码示例
- C++ std::allocator()用法及代码示例
- C++ array data()用法及代码示例
- C++ multiset size()用法及代码示例
- C++ ratio_not_equal()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_nothrow_copy_assignable in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。