gpt4 book ai didi

c++ - 像 printf 一样格式化输出到文件

转载 作者:行者123 更新时间:2023-11-28 00:43:02 28 4
gpt4 key购买 nike

是否可以将输出格式设置为文件,以便我可以像 printf 写入控制台一样写入文件?

printf("%s\\\n", "something");

std::ofstream myfile;
myfile.open ("somefile", ofstream::in | ofstream::out | ofstream::app); //debug
myfile << ""; // can I use somehow pattern like %s?

最佳答案

fprintf(FILE*, ....)

但混合搭配并不明智。尽可能使用新型流。

http://www.cplusplus.com/reference/ios/ios_base/setf/

关于c++ - 像 printf 一样格式化输出到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17814652/

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