将vector <uint8_t>的子集转换为int </uint8_t>

时间:2013-07-23 14:39:07

标签: c++ stl

我无法弄清楚如何将十六进制值的向量转换为十进制长整数。

    vector<uint8_t>v;

    v.push_back(0x02);
    v.push_back(0x08);
    v.push_back(0x00);
    v.push_back(0x04);
    v.push_back(0x60);
    v.push_back(0x50);
    v.push_back(0x58);
    v.push_back(0x4E);
    v.push_back(0x01);
    v.push_back(0x80);

//How would I achieve this:
    long time =  0x00046050584E0180; //1,231,798,102,000,000

如何将向量v的元素2-9变为长整数,如上面用长'时间'表示的那样。

谢谢!

5 个答案:

答案 0 :(得分:4)

这里的基本原则是:

int x = 0; 
for(uint8_t i : v)
{
   x <<= 8; 
   x |= i;
}

答案 1 :(得分:1)

未经测试:

int time = 0;
for (int i:v) time = time << 8 + i;

答案 2 :(得分:1)

由于std::vector在内存向量中包含其数据,因此可以使用指针强制转换,例如: G:

vector<uint8_t> v;
assert(v.size() >= 2 + sizeof(long)/sizeof(uint8_t));
long time = *reinterpret_cast<const long*>(&v[2]);

确保该向量包含足够的数据,并注意不同的字节序类型。

答案 3 :(得分:1)

您当然可以使用适当定义的函数在算法上执行此操作:

long long f( long long acc, unsigned char val )
{
   return ( acc << 8 ) + val;
}

该值由以下公式计算:

#include <numeric>

long long result = std::accumulate( v.begin() + 2, v.end(), 0ll, f );

答案 4 :(得分:0)

我的解决方案如下,我已经测试过了。你可以尝试一下。

long long res = 0;
for (int i = 2; i < 10; ++i)
    res = (res << 8) + v[i];