gpt4 book ai didi

c++ - bitset 数据是否以相反的顺序存储?

转载 作者:行者123 更新时间:2023-11-30 03:41:45 25 4
gpt4 key购买 nike

<分区>

我正在尝试 std::bitset在得到错误的结果一段时间后,我注意到结果的顺序是相反的。尝试搜索 cppreference页面,但找不到任何来源,因此需要确认。这也应该是不同编译器的默认行为吗?

#include <iostream>
#include <bitset>
using namespace std;

int main() {
bitset<7> bin('C');
cout << bin << endl;
for(int i = 0; i < 7; ++i){ cout << bin[i]; }
return 0;
}

1000011

1100001

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com