gpt4 book ai didi

c++ - iostream 的问题,我的输出 endl 是小方 block

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:24:18 26 4
gpt4 key购买 nike

当我写入文件时我的输出有问题当我用 endl 更改行时我得到正方形。

std::ofstream outfile   (a_szFilename, std::ofstream::binary);
outfile<<"["<<TEST<<"]"<<std::endl;

我的文件中有类似这样的内容,而且其他输出不会写在下一行,而是写在同一行。

[TEST]square

显然我不能在这里写正方形,但它是关于 ofstream 是二进制的还是什么?

最佳答案

在这种情况下,您真的不想以二进制模式打开文件。

试试这个:

std::ofstream outfile   (a_szFilename);
outfile<<"["<<TEST<<"]"<<std::endl;

关于c++ - iostream 的问题,我的输出 endl 是小方 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2335320/

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