<type_traits>

类模板
<type_traits>

std::add_volatile

template <class T> struct add_volatile;
添加 volatile 限定符
获取类型Tvolatile的顶层限定符。

转换后的类型别名为成员类型add_volatile::type.

如果已知T如果 T 尚未被 volatile 限定,并且既不是引用类型也不是函数类型(函数类型不能被 volatile 限定),则其类型与T volatile相同。否则,其类型为T不变。

请注意,此类仅通过使用另一个类型作为模型来获取类型,但它不会在这些类型之间转换值或对象。要显式地为对象添加 volatile 限定符,请使用const_cast可以使用。

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知T如果 T 尚未被 volatile 限定,并且既不是引用类型也不是函数类型,则其类型与T相同,但被 volatile 限定。
否则,T

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// add_volatile example
#include <iostream>
#include <type_traits>

int main() {
  typedef std::add_volatile<int>::type A;            // volatile int
  typedef std::add_volatile<volatile int>::type B;   // volatile int     (unchanged)
  typedef std::add_volatile<int* volatile>::type C;  // int* volatile    (unchanged)
  typedef std::add_volatile<volatile int*>::type D;  // volatile int* volatile
  typedef std::add_volatile<volatile int&>::type E;  // volatile int&    (unchanged)

  std::cout << std::boolalpha;
  std::cout << "checking volatileness:" << std::endl;
  std::cout << "A: " << std::is_volatile<A>::value << std::endl;
  std::cout << "B: " << std::is_volatile<B>::value << std::endl;
  std::cout << "C: " << std::is_volatile<C>::value << std::endl;
  std::cout << "D: " << std::is_volatile<D>::value << std::endl;
  std::cout << "E: " << std::is_volatile<E>::value << std::endl;

  return 0;
}

输出
checking volatileness:
A: true
B: true
C: true
D: true
E: false


另见