【问题标题】:C++: print data, printfC++:打印数据,printf
【发布时间】:2015-11-12 19:12:12
【问题描述】:

在以下代码的末尾,我获得了输出并使用 cout 在终端上打印(在第 60 行)。但是,我想在文本文件中打印它,但在这种情况下我不能使用 fprintf。

我该怎么做?

这是我的代码:

#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>

using namespace std;

bool isnotdigit(char c)
{
   return !isdigit(c);
}

bool compare(const string s1, const string s2)
{
   auto itr1 = s1.begin(), itr2 = s2.begin();

   if (isdigit(s1[0]) && isdigit(s2[0]))
   {
      int n1, n2;
      stringstream ss(s1);
      ss >> n1;
      ss.clear();
      ss.str(s2);
      ss >> n2;

      if (n1 != n2)
         return n1 < n2;

      itr1 = find_if(s1.begin(), s1.end(), isnotdigit);
      itr2 = find_if(s2.begin(), s2.end(), isnotdigit);
   }

   return lexicographical_compare(itr1, s1.end(), itr2, s2.end());
}

int main()
{

   char out_file_name[500];
   snprintf(out_file_name, sizeof(out_file_name), "sort.txt");
   FILE *out_file;
   out_file = fopen(out_file_name, "w");
   cout << "Making output file: " << out_file_name << endl;   

   ifstream in("mydata.txt");

   if (in)
   {
      vector<string> lines;
      string line;

      while (getline(in, line))
         lines.push_back(line);

      sort(lines.begin(), lines.end(), compare);

      for (auto itr = lines.begin(); itr != lines.end(); ++itr)
        cout << *itr << endl;
    //fprintf(out_file,);
   }

   fclose(out_file);
   cout << "Output complete" << endl;

   return 0;
}

【问题讨论】:

    标签: c++ c++11 io


    【解决方案1】:

    使用std::ofstream 并创建一个文件变量:

    std::ofstream output_file("output.txt");
    if (output_file)
    {
      output_file << "Hello there.\n";
      output_file.flush();
    }
    

    请在有关文件 I/O 的部分中查看您最喜欢的 C++ 参考资料。

    这是与 C 语言不同的领域之一。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-01-17
      • 2014-10-25
      • 1970-01-01
      • 2015-10-15
      • 1970-01-01
      • 2013-06-02
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多