码迷,mamicode.com
首页 > 其他好文 > 详细

格式工厂(七)Type Traits

时间:2017-08-01 00:49:31      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:操作   sig   img   point   bsp   end   poi   ons   ima   

版权声明:本文为博主原创文章,未经博主允许不得转载。

识别变量的type id,返回true或false,举一个简单使用的例子

template <typename T>
void type_traits_output(const T& x)
{
    cout << "\ntype traits for type : " << typeid(T).name() << endl;
    
    cout << "is_void\t" << is_void<T>::value << endl;
    cout << "is_integral\t" << is_integral<T>::value << endl;
    cout << "is_floating_point\t" << is_floating_point<T>::value << endl;
    cout << "is_arithmetic\t" << is_arithmetic<T>::value << endl;
    cout << "is_signed\t" << is_signed<T>::value << endl;
    cout << "is_unsigned\t" << is_unsigned<T>::value << endl;
    cout << "is_const\t" << is_const<T>::value << endl;
    cout << "is_volatile\t" << is_volatile<T>::value << endl;
    cout << "is_class\t" << is_class<T>::value << endl;
    cout << "is_function\t" << is_function<T>::value << endl;
    cout << "is_reference\t" << is_reference<T>::value << endl;
}

int main(int argc, const char * argv[]) {

    int a = 5;
    type_traits_output<int>(a);
    return 0;
}

  输出结果

技术分享

 


 

具体操作也不做太多解释了,很好理解.更多的Type Traits见

http://www.cplusplus.com/reference/type_traits/

以下是Type Traits的截图

 技术分享

 


技术分享


技术分享


技术分享

 希望会对大家有所帮助

如有不正确的地方请指正

参照<<侯捷 C++新标准 C++11>>

 

格式工厂(七)Type Traits

标签:操作   sig   img   point   bsp   end   poi   ons   ima   

原文地址:http://www.cnblogs.com/LearningTheLoad/p/7266405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!