<type_traits>头文件中提供了C++ STL的std::add_volatile模板。 C++ STL的std::add_volatile模板用于获取具有易失性限定的T类型。函数std::is_volatile用于检查类型T是否为volatile限定。
头文件:
#include<type_traits>
模板类别:
template < class T > struct add_volatile;
用法:
std::add_volatile<T>::value
参数:模板std::add_volatile接受单个参数T(Trait类),该参数用于获取具有易变资格的类型T。
下面是演示C++中std::add_volatile:的程序:
程序:
// C++ program to illustrate
// std::add_volatile
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
// Driver Code
int main()
{
// Declare variable of type
// volatile (int, const int, const int*,
// int * const and const int&)
typedef add_volatile<int>::type A;
typedef add_volatile<volatile int>::type B;
typedef add_volatile<int* volatile>::type C;
typedef add_volatile<volatile int*>::type D;
typedef add_volatile<volatile int&>::type E;
cout << boolalpha;
// Checking the volatileness of
// the above declared variable
cout << "checking volatileness:"
<< endl;
cout << "A:"
<< is_volatile<A>::value
<< endl;
cout << "B:"
<< is_volatile<B>::value
<< endl;
cout << "C:"
<< is_volatile<C>::value
<< endl;
cout << "D:"
<< is_volatile<D>::value
<< endl;
cout << "E:"
<< is_volatile<E>::value
<< endl;
return 0;
}
输出:
checking volatileness: A:true B:true C:true D:true E:false
参考: http://www.cplusplus.com/reference/type_traits/add_volatile/
相关用法
- 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::add_volatile in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。