C++ – 字节数组byte[]或者unsigned char[]与float的相互转换
设定float型字节长度为4字节。
1 float转字节数组
float型转字节数组byte[]或者unsigned char[]
void FloatTobytes(float data, unsigned char bytes[])
{
size_t length = sizeof(float);
unsigned char* pdata = (unsigned char*)&data;
for (int i = 0; i < length; i++)
{
bytes[i] = *pdata++;
}
}
2 字节数组转float
字节数组byte[]或者unsigned char[]转float型
float BytesToFloat(unsigned char bytes[])
{
return *((float*)bytes);
}
3 使用示例
#include <iostream>
float BytesToFloat(unsigned char bytes[])
{
return *((float*)bytes);
}
void FloatTobytes(float data, unsigned char bytes[])
{
size_t length = sizeof(float);
unsigned char* pdata = (unsigned char*)&data;
for (int i = 0; i < length; i++)
{
bytes[i] = *pdata++;
}
}
int main()
{
unsigned char floatByteArray[4];
float a = 10.0;
FloatTobytes(a, floatByteArray);
std::cout << BytesToFloat(floatByteArray) << std::endl;
return 0;
}
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:C++ – 字节数组byte[]或者unsigned char[]与float的相互转换
原文链接:https://www.stubbornhuang.com/2035/
发布于:2022年03月15日 22:14:21
修改于:2023年06月26日 20:27:46
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50