我有一个二进制文件,该文件应主要包含原始字节数据,这些数据正在类CubeState
中生成和处理。我进行了一些测试,看来编写过程还可以。我得到的唯一问题是,有时它会记下0x00字符,并且每当发生这种情况时,我都会收到裁剪的数据或没有数据。这是我写作/阅读的例子。
CubeState currentParent = CubeState();
char* buf = new char[10];
std::ofstream ostr = std::ofstream("parents", std::ios::out | std::ios::binary);
ostr.write(currentParent.getContent().c_str(), 10);
ostr.close();
std::ifstream istr("parents", std::ios::in | std::ios::binary);
istr.read(buf, 10);
istr.close();
currentParent = CubeState(buf);
currentParent.getContent().c_str()
(默认格式)将返回如下字符串:0x00 0x01 0x05 0x0B 0x17,依此类推。
编辑
CubeState
是起作用的黑匣子。如果您需要另一个示例-在这里,您可以进行以下操作:
char* buf = new char[4];
std::ofstream ostr = std::ofstream("parents", std::ios::out |
std::ios::binary);
ostr.write("" + (char)0 + (char)1 + (char)5 + (char)11, 4);
ostr.close();
std::ifstream istr("parents", std::ios::in | std::ios::binary);
istr.read(buf, 4);
istr.close();
std::cout << buf << std::endl;
输出将为空,并且如果您在运行时检查buf
-它也将为空
答案 0 :(得分:0)
CubeState
易于生成以/ 0开头的输出,即(char)0
。这导致了问题-返回的字符串被假定为空。
一旦我有足够的代码片段来正确表达我的关注,我将在稍后打开另一个问题。
如果您仍然对CubeState.getContent()
的内容感兴趣-就在这里
class CubeState {
private:
state = {
0, 1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26
};
const int av[] = { 0, 0, 1, 1, 0, 2, 2, 3, 3, 4, 0, 5, 0, 0, 0, 6, 0, 7, 4, 8, 5, 9, 0, 10, 6, 11, 7 },
corners[] = { 0, 2, 6, 8, 18, 20, 24, 26 },
sides[] = { 1, 3, 5, 7, 9, 11, 15, 17, 19, 21, 23, 25 };
...
std::string getContent() {
std::bitset<80> container(0);
for (int i = 0; i < 8; i++) {
int temp = av[state[corners[i]]];
container[i * 3] = temp % 2;
temp >>= 1;
container[i * 3 + 1] = temp % 2;
temp >>= 1;
container[i * 3 + 2] = temp;
}
for (int i = 0; i < 12; i++) {
int temp = av[state[sides[i]]];
container[i * 4 + 24] = temp % 2;
temp >>= 1;
container[i * 4 + 25] = temp % 2;
temp >>= 1;
container[i * 4 + 26] = temp % 2;
temp >>= 1;
container[i * 4 + 27] = temp;
}
int temp = parent;
container[72] = temp % 2;
temp >>= 1;
container[73] = temp % 2;
temp >>= 1;
container[74] = temp % 2;
temp >>= 1;
container[75] = temp;
std::string result;
for (int i = 0; i < 10; i++)
result += std::bitset<8>(container.to_string().substr(i, i * 8)).to_ulong() + 1;
return result;
}