F_G

许多问题需要说清楚就可以&&走永远比跑来的重要

导航

[C++] C++ 文件操作

一、需要的头文件

#include <fstream>

#include <sstream>

using namespace std;

 

二、打开关闭

ifstream file;

file.open(string name,ios::in);

第二个参数默认是ios::in

file.close();

 

三、读取

为了便于处理,使用字符串流

istringstream stream(string line);

可以使用下面的方式来进行使用:

while(getline(file,line)){
      istringstream stream(line);
      double a;
      while(stream>>a){
           cout<<a<<" ";
      }
  cout<<endl;
}     

 

posted on 2015-12-26 16:10  F_G  阅读(264)  评论(0编辑  收藏  举报