c++11 类型的转换的traits

template

struct remove_const;   移除const

template

struct add_const;   添加const

template

struct remove_reference;   移除引用

template

struct add_lvalue_reference;   添加左值引用

template

struct add_rvalue_reference;   添加右值引用

template

struct remove_extent;   移除数组顶层的维度

template

struct remove_all_extent;   移除数组所有的维度

template

struct remove_pointer;   移除指针

template

struct add_pointer;   添加指针

template

struct decay;   移除cv(const volatile)或添加指针

template

struct common_type;   获取公共类型

使用如下:

    cout << is_same::type>::value << endl;        //1
    cout << is_same::type>::value << endl;        //1

    cout << is_same::type>::value << endl;        //1
    cout << is_same::type>::value << endl;        //1
    cout << is_same::type>::value << endl;        //1
    cout << is_same::type>::value << endl;        //1

    typedef common_type::type NumberType;
    cout << is_same::value << endl;        //1

 

template
typename remove_cv::type>::type* Create()
{
    typedef typename remove_cv::type>::type U;
    return new U();
}

template
typename decay::type* Create()
{
    typedef typename decay::type U;
    return new U();
}

int* p = Create();   //ok

对于普通类型,decay是移除引用和cv符,除了普通类型,decay还可以用于数组和函数,具体规则如下:

先移除T类型的引用,得到类型U,U定义为remove_reference::type

如果is_array::value为true,修改类型type为remove_extent::type

否则,如果is_function::value为true,修改类型type为add_pointer::type

否则,修改类型type为remove_cv::type

 

你可能感兴趣的:(C++11)