Convert float vector to byte vector and back

前端 未结 2 1038
情歌与酒
情歌与酒 2021-01-13 12:58

I\'m trying to do some conversions between float and unsigned char arrays (std::vector in this case) and i\'ve run into some troubles.

I\'ve converted the vector of

2条回答
  •  -上瘾入骨i
    2021-01-13 13:54

    I have had to do this kind of thing for sending raw byte data over TCP. I used a struct that contains a single unsigned char[4] array and use memcpy to copy the bytes in my float values to the start of this array. It may not be ideal but it does work well enough for my purposes. Obviously you can do the reverse to retrieve the data.

提交回复
热议问题