模板转换

时间:2011-08-11 14:14:51

标签: c++ templates

我有两个类int_tuint_t作为签名类型和无符号类型:

template <typename lo_t> struct uint_t;

template <typename hi_t, typename lo_t>
struct int_t
{
    lo_t lo;
    hi_t hi;

    int_t() : hi(0), lo(0) {}
    int_t(int value) : lo(value), hi(value<0? -1: 0) {}
    int_t(unsigned value) : lo(value), hi(0) {}

    int_t(const uint_t<lo_t>&);

    //template<typename ty_a, typename ty_b> int_t(const int_t<ty_a, ty_b>&);
};

template <typename hi_lo>
struct uint_t
{
    hi_lo lo, hi;

    uint_t() : lo(0), hi(0) {}
    uint_t(int value) : lo(value), hi(value<0? -1: 0) {}
    uint_t(unsigned value) : lo(value), hi(0) {}

    template<typename hi_t>
    uint_t(const int_t<hi_t, hi_lo>& value) : hi(value.hi), lo(value.lo) {}
};

template <typename hi_t, typename lo_t>
int_t<hi_t, lo_t>::int_t(const uint_t<lo_t>& value) : hi(value.hi), lo(value.lo)
{}

因为我希望它们像内置类型一样工作,所以我将转换运算符从一个定义到另一个,这样我就可以像下一个一样编写代码并且仍然可以工作:

typedef  int_t<int, unsigned>  int64;
typedef uint_t<unsigned>      uint64;

int64  a = 1000;
uint64 b = a;

uint64 x = 512;
 int64 y = x;

现在唯一的问题是从更高或更低的精度int_t类型转换为另一个,所以我声明了注释构造函数这样做但我不知道写什么?

以下是我用来测试该构造函数结果的示例:

typedef  int_t<int, unsigned>  int64;
typedef uint_t<unsigned>      uint64;

typedef  int_t<int64, uint64> int128;
typedef uint_t<uint64>       uint128;

int64 a = 1024;
int128 b = a;

int128 x = 100;
int64 y = x;

2 个答案:

答案 0 :(得分:1)

您必须定义您希望他们做的事情。对于无符号,增加大小很容易,只需将高位设置为0并从操作数复制低位。对于签名,您可能希望签署扩展操作数。

为了缩小你还必须决定你想做什么。如果值不合适,你想抛出吗?很可能你只想抛弃所有高阶位并将其存储在可用空间中。

答案 1 :(得分:1)

我找到了Little和Big Endians的答案:

template<typename ty_a, typename ty_b>
int_t(const int_t<ty_a, ty_b>& value)
{
    *this = value < 0? -1: 0;

#ifdef BIG_ENDIAN
        if (sizeof(*this) < sizeof(value))
            *this = *((int_t*)&value.lo + (sizeof(value.lo)/sizeof(*this) - 1));
        else
            *((int_t<ty_a, ty_b>*)&hi + sizeof(*this)/sizeof(value) - 1) = value;
#else
        if (sizeof(*this) < sizeof(value))
            *this = *(int_t*)&value;
        else
            *(int_t<ty_a, ty_b>*)&lo = value;
#endif
}

请记住要为operator==

定义operator<int_t所需的答案