C ++:如何将int转换为unsigned long而不更改任何位?

时间:2011-08-05 23:12:16

标签: c++ casting bit-manipulation

C ++:如何将int转换为unsigned long而不更改任何位? 我想打包并将值解压缩到内存中。字大小为64位。

此代码段说明了问题:

int v1 = -2; // 0xfe
unsigned long v2=(unsigned long)v1; // 0xfffe, I want 0x00fe

简单的解决方案是:

unsigned long v2=(unsigned int)v1; // 0x00fe

但是,此代码位于模板中,其中目标类型是参数,因此我不得不求助于此:

uint64 target = mem[index] & mask;
uint64 v;
if (value < 0) {
    switch (bits) {
    case 8:
        v = (uint8)value;
        break;
    case 16:
        v = (uint16)value;
        break;
    case 32:
        v = (uint32)value;
        break;
    }
} else {
    v = value;
}
v = v << lShift;
target |= v;
mem[index] = target;

假设,例如,“value”的类型是int(16位)和bits = 16。 目标是掩盖内存中的位值并替换它们。

有人知道更简单的方法吗?

6 个答案:

答案 0 :(得分:7)

假设你有C ++ 0x支持:

#include <type_traits>
v= static_cast<std::make_unsigned<decltype(value)>::type>(value);

我假设您正在对value的类型进行参数化,否则这没有任何意义。

编辑:通过使用static_cast代替C演员,使其更多C ++。我想这就是让我失宠的原因。

答案 1 :(得分:5)

如果你不介意打字,可以想到一个特质课:

template <typename IType> struct ToULong;

template <> struct ToULong<signed char>
{
  static inline unsigned long int get(signed char c) { return (unsigned char)(c); }
};

template <> struct ToULong<signed short int>
{
  static inline unsigned long int get(signed short int c) { return (unsigned short int)(c); }
};

/* ... signed int, signed long int, signed long long int ... */

用法:

template <typename IType>
struct Foo
{
  unsigned lont int get_data() const { return ToULong<IType>::get(m_data); }
private:
  IType m_data;
}

更新:更简单,你可以做一堆重载:

unsigned long int toULong(            char c) { return (unsigned      char)(c); }
unsigned long int toULong(signed      char c) { return (unsigned      char)(c); }
unsigned long int toULong(signed short int c) { return (unsigned short int)(c); }
unsigned long int toULong(signed       int c) { return (unsigned       int)(c); }
unsigned long int toULong(signed  long int c) { return (unsigned  long int)(c); }

第二次更新:如果你想要更加像C ++,你应该说static_cast<T>(x)而不是(T)(x)

答案 2 :(得分:2)

工会怎么样?

union u1 {
    short int si;
    unsigned long int uli;

    unsigned long int stub;

    operator unsigned long int () {return uli;};
public:
    u1(short int nsi) : stub(0) {si = nsi;}

};

答案 3 :(得分:1)

使用“Kerrek SB”提出的想法,我提出了一个解决方案。

template <typename Tint> uint64 ToMemdata(Tint value) {
    return (uint64)value;};
template <> uint64 ToMemdata<int8>(int8 value) {
    return (uint64)((uint8)value);};
template <> uint64 ToMemdata<int16>(int16 value) {
    return (uint64)((uint16)value);};
template <> uint64 ToMemdata<int32>(int32 value) {
    return (uint64)((uint32)value);};
template <> uint64 ToMemdata<int64>(int64 value) {
    return (uint64)((uint64)value);};

template <typename Tint> void packedWrite(Tint value, int vectorIndex, uint64* pData) {

    uint64 v = ToMemdata(value);
    // This call eliminates a run time test for minus and a switch statement
    // Instead the compiler does it based on the template specialization

    uint64 aryix, itemofs;
    vectorArrayIndex(vectorIndex, &aryix, &itemofs); // get the memory index and the byte offset
    uint64 mask = vectorItemMask(itemofs); // get the mask for the particular byte
    uint64 aryData = pData[aryix]; // get the word in memory
    aryData &= mask; // mask it
    uint64 lShift = (uint64)(itemofs * sizeof(Tint) * 8); 
    uint64 d = v << lShift; // shift the value into the byte position
    aryData |= d; // put the value into memory
    pData[aryix] = aryData;
}

使用这个概念,我能够对代码进行其他改进。 例如,现在也对vectorItemMask()的调用进行了模板化。

答案 4 :(得分:-1)

要在不更改位的情况下进行转换,请使用引用,然后使用适当的类型取消引用:

int v1 = -2; // 0xfe
unsigned long v2=*(unsigned long *)&v1;

这假设尺寸相同。如果sizeof(int)!= sizeof(unsigned long),它具有未定义的行为。你可能想要unsigned int。

编辑:意识到我回答了错误的问题。

Boost type_traits有一些东西(我相信它是make_unsigned)将int类型转换为无符号版本(如果它已签名),如果它是无符号的则不执行任何操作。

答案 5 :(得分:-1)

我相信您可以使用按位AND来获得所需的结果。

unsigned long v2 = 0;
v2 = v2 | v1;