码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-12-26 16:51:11      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

一、需要的头文件

#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;
}     

 

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

标签:

原文地址:http://www.cnblogs.com/deepblueme/p/5078281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!