标题:文件流迭代器
取消只看楼主
fl8962
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:贵宾
威 望:14
帖 子:539
专家分:2471
注 册:2012-10-17
结帖率:96.23%
已结贴  问题点数:20 回复次数:1 
文件流迭代器
#include<iostream>
#include<string>
#include<fstream>
#include<iterator>
#include<algorithm>
using namespace std;
int main(void)
{
        ifstream file;
        file.open("12.21txt");
        if (!file)
        cout << "can not open a new file" << endl;
        ofstream rfile;
        rfile.open("12.21txt");
        istream_iterator<string> p(cin), eof;
        ostream_iterator<string> q(rfile," ");
        while (p != eof)
        {
                *p++=*q++;//这里有错误,请问具体是哪里错了。谢谢
        }

        return 0;
}
这里我希望将cin输入的内容输入到12.21txt文件当中。
搜索更多相关主题的帖子: include file 
2014-05-29 06:03
fl8962
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:贵宾
威 望:14
帖 子:539
专家分:2471
注 册:2012-10-17
得分:0 
回复 2 楼 rjsp
为什么你这个for循环就可以用,而我的那个while循环就不可以呢?请问下我的那个是哪里错了?

想抽苏烟了。
2014-05-30 00:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-432209-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.406630 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved