我正在开发一个类模板,它接受任何类型的单个参数T
。现在我对integral types
感兴趣;稍后当我将这个类扩展为使用floating point types
时,我将专门研究这个类。
在这个类中,我有一个成员变量,它将存储可以存储在这种类型中的最大位表示数。例如:
基本类型&尺寸: 值范围
signed char:
1Byte
,8 bits
,[-127,127]
代表一个补码或[128,127]
代表两个补码unsigned char:
1Byte
,8 bits
,[0,255]
我可以使用该类型的unsigned version
来更轻松地获取最大值,因此在我的模板类中(这里是伪代码):
template<class T>
binaryRep {
T t_; // store the value
std::size_t size_ = sizeof( T ); // size in bytes
std::size_t maxVal = T( -1 ); // This is where I need T to be it's unsigned version.
};
如果有人要使用此模板类:
void someFunc() {
binaryRep<unsigned char> binUC; // This works fine
binaryRep<char> binSC; // Not giving the needed results.
}
在类的构造函数中是否有办法将T
强制转换为unsigned T
?
在我的构造函数中,我试图做这样的事情:
binaryRep( const T& t ) : t_( static_cast<unsigned T>( t ) ) {
}
然而,这不会编译,也不认为它会...但是这种性质的东西是我在这里需要的。
[注意:] - 此类中的maxValue
成员表示此类型可存储的可行二进制位组合的总数。例如:char
和&amp;标准unsigned char
8 bit
的{{1}}最多包含byte
个二进制位组合。
如果您需要更多信息,请与我们联系。
答案 0 :(得分:0)
将maxVal
设置为size_ == sizeof(long long) ? (uLL) -1 : (1uLL << size_) - 1
应该可以解决问题。