免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1051 | 回复: 4
打印 上一主题 下一主题

一个莱鸟的问题, 关于读文件? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-01-21 10:27 |只看该作者 |倒序浏览
用ifstream打开读一个文件, 用完后必须得关闭吗?

论坛徽章:
0
2 [报告]
发表于 2005-01-21 10:45 |只看该作者

一个莱鸟的问题, 关于读文件?

与上完厕所是否必须擦一擦相同

论坛徽章:
0
3 [报告]
发表于 2005-01-21 10:52 |只看该作者

一个莱鸟的问题, 关于读文件?

我看了<<c++标准程序库>;>;中得一个demo,它就没关闭啊

/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josuttis 1999.
* Permission to copy, use, modify, sell and distribute this software
* is granted provided this copyright notice appears in all copies.
* This software is provided "as is" without express or implied
* warranty, and with no claim as to its suitability for any purpose.
*/
// header files for file I/O
#include <iostream>;
#include <fstream>;

void printFileTwice (const char* filename)
{
    // open file
    std::ifstream file(filename);

    // print contents the first time
    std::cout << file.rdbuf();

    // seek to the beginning
    file.seekg(0);

    // print contents the second time
    std::cout << file.rdbuf();
}

int main (int argc, char* argv[])
{
    // print all files passed as a command-line argument twice
    for (int i=1; i<argc; ++i) {
        printFileTwice(argv);
    }
}

论坛徽章:
0
4 [报告]
发表于 2005-01-21 11:08 |只看该作者

一个莱鸟的问题, 关于读文件?

当然不是必须的,就像上厕所一样,喜欢脏着就脏着,没人强迫。

论坛徽章:
0
5 [报告]
发表于 2005-01-21 11:49 |只看该作者

一个莱鸟的问题, 关于读文件?

原则上最好么关闭,就像水龙头的水一样,可以不关。但是最好关掉
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP