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

UnSignType

时间:2015-02-05 13:43:11      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

template<class T>
class UnSignType
{
    //如果缺少Type 请用UNSIGN_TYPE宏添加偏特化
};

#define UNSIGN_TYPE(t) \
template<> \
struct UnSignType<t> \
{\
    typedef  unsigned t TYPE;\
};

UNSIGN_TYPE(char)
UNSIGN_TYPE(short)
UNSIGN_TYPE(int)
UNSIGN_TYPE(long)
UNSIGN_TYPE(__int64)


//测试程序

void main()
{
    UnSignType<int>::TYPE c;
}

UnSignType

标签:

原文地址:http://blog.csdn.net/he_zhidan/article/details/43525925

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