Computer >> Máy Tính >  >> Lập trình >> C ++

Cách tốt nhất để đọc toàn bộ tệp thành chuỗi std ::trong C ++ là gì?

Đây là một cách đơn giản để đọc toàn bộ tệp thành std ::string trong C ++

Thuật toán

Begin
   Take the filename as inputstream.
   Declare a string variable str.
   Read the file till the end by using rdbuf().
   Put the data into st.
   Print the data.
End.

Mã mẫu

#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
using namespace std;
int main() {
   ifstream f("a.txt");
   string str;
   if(f) {
      ostringstream ss;
      ss << f.rdbuf();
      str = ss.str();
   }
   cout<<str;
}

Đầu vào

a.txt data file contains the string “hi”

Đầu ra

hi