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