CppDS.com

C++ 98 11 14 17 20 手册

std::add_cv, std::add_const, std::add_volatile

来自cppreference.com
< cpp‎ | types
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
类型支持
基本类型
基础类型
定宽整数类型 (C++11)
数值极限
C 数值极限接口
运行时类型信息
类型特性
类型类别
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型属性
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(C++20 前)
(C++11)(C++20 中弃用)
(C++11)
类型特性常量
元函数
(C++17)
常量求值语境
受支持操作
关系与属性查询
类型修改
add_cvadd_constadd_volatile
(C++11)(C++11)(C++11)
类型变换
(C++11)
(C++11)
(C++17)
(C++11)(C++20 前)(C++17)
 
定义于头文件 <type_traits>
template< class T >
struct add_cv;
(1) (C++11 起)
template< class T >
struct add_const;
(2) (C++11 起)
template< class T >
struct add_volatile;
(3) (C++11 起)

提供同 T 的成员 typedef type ,除了它拥有添加的 cv 限定符(除非 T 是函数、引用或已拥有 cv 限定符)。

1) 添加 constvolatile
2) 添加 const
3) 添加 volatile

添加此页面上描述的任何模板的特化的程序行为未定义。

成员类型

 
名称 定义
type 带 cv 限定符的类型 T

辅助类型

template< class T >
using add_cv_t       = typename add_cv<T>::type;
(C++14 起)
template< class T >
using add_const_t    = typename add_const<T>::type;
(C++14 起)
template< class T >
using add_volatile_t = typename add_volatile<T>::type;
(C++14 起)

可能的实现

template<class T> struct add_cv { typedef const volatile T type; };
 
template<class T> struct add_const { typedef const T type; };
 
template<class T> struct add_volatile { typedef volatile T type; };

注解

这些变换特征能用于在模板实参推导中建立非推导语境

template<class T>
void f(T, T);
 
template<class T>
void g(T, std::type_identity_t<T>);
 
f(4.2, 0); // 错误:对 'T' 推导出冲突的类型
g(4.2, 0); // OK :调用 g<double>


示例

#include <iostream>
#include <type_traits>
 
struct foo
{
    void m() { std::cout << "Non-cv\n"; }
    void m() const { std::cout << "Const\n"; }
    void m() volatile { std::cout << "Volatile\n"; }
    void m() const volatile { std::cout << "Const-volatile\n"; }
};
 
int main()
{
    foo{}.m();
    std::add_const<foo>::type{}.m();
    std::add_volatile<foo>::type{}.m();
    std::add_cv<foo>::type{}.m();
}

输出:

Non-cv
Const
Volatile
Const-volatile

参阅

(C++11)
检查类型是否为 const 限定
(类模板)
检查类型是否为 volatile 限定
(类模板)
从给定类型移除 const 或/与 volatile 限定符
(类模板)
(C++17)
获得到其实参的 const 引用
(函数模板)
关闭