gpt4 book ai didi

c++ - 在 C++ 中将二进制字符串输出到二进制文件

转载 作者:行者123 更新时间:2023-11-30 01:46:18 30 4
gpt4 key购买 nike

假设我有一个字符串,其中包含这样一个二进制文件“0110110101011110110010010000010”。有没有一种简单的方法可以将该字符串输出到二进制文件中,以便该文件包含 0110110101011110110010010000010?我知道计算机一次写入一个字节,但我无法想出一种方法将字符串的内容作为二进制文件写入二进制文件。

最佳答案

使用位集:

//Added extra leading zero to make 32-bit.
std::bitset<32> b("00110110101011110110010010000010");

auto ull = b.to_ullong();

std::ofstream f;
f.open("test_file.dat", std::ios_base::out | std::ios_base::binary);
f.write(reinterpret_cast<char*>(&ull), sizeof(ull));
f.close();

关于c++ - 在 C++ 中将二进制字符串输出到二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33457974/

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