作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 bitset<64>
(16 位串行和 48 位时间戳),我想写到 quint8 *data
.
当 bitset<64>
看起来像:
1111001010100101...
我要data
看起来像:
data[0] = 11110010
data[1] = 10100101
...
如果有人可以帮助我实现它,我将不胜感激。
最佳答案
如果我理解正确,那么这就完成了你的要求:
#include <iostream>
#include <bitset>
int main()
{
std::bitset<64> bits64{0b0111101111011001110011010101110001111011110110011100110101011100};
/*
01111011
11011001
11001101
01011100
01111011
11011001
11001101
01011100
*/
for (auto i = 7; i >= 0 ; i--)
std::cout << std::bitset<8>{bits64.to_ullong() >> (i * 8)} << std::endl;
return 0;
}
输出:
01111011
11011001
11001101
01011100
01111011
11011001
11001101
01011100
您可以更改 for
循环语句以使其以您选择的任何字节顺序发出。
关键是雇用 the shift operator ( <<
或 >>
)关于积分值。
关于c++ - 将 bitset<64> 转换为 quint8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52077081/
我克隆了一个仓库RainEffect,它模仿玻璃墙上的真实雨滴。我尝试运行它,但出现错误 Quint is not Defined 。我安装了它包含的所有 Node 模块。还尝试了 yarn buil
我们如何使用 quint 测试用 fixture 测试 ember 数据?这是我的测试代码的样子: /*globals App, getFoodController*/ module('Analyti
我是一名优秀的程序员,十分优秀!