歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

C++ 讀取文件內容賦值給變量

C++ 讀取文件內容賦值給變量

  1. #include ifstream
  2. ifstream file;
  3. file.open("abc.txt",ios::in);
  4. string str1,str2;
  5. file>>str1;//將讀入的第一個字符串賦值給str1,按照空格來識別不同的字符。
Copyright © Linux教程網 All Rights Reserved