C++文件操作的简单程序
Posted 爱吃香蕉的猴子0000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++文件操作的简单程序相关的知识,希望对你有一定的参考价值。
Hello, 大家好,我是爱吃香蕉的猴子, 写个文件操作的例子
// C_file.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include <fstream>
#include <string>
//1、创建一个ifstream对象来管理输入流
//2、将该对象与特定的文件关联起来
//3、以使用cin的方式使用该对象
int main()
{
using namespace std;
string filename;
cout << "Enter name for new file";
cin >> filename;
ofstream fout{ filename.c_str() };//创建一个ifstream对象来管理 -> file
fout << "for your eyes only ;\\n";//写入文件
cout << "Enter your secret number:"; //写入到屏幕
float secret;
cin >> secret;
fout << "Your secret number is " << secret << endl;//
fout.close(); //close file
ifstream fin{ filename.c_str() };//创建一个ifstream对象来管理输出流
cout << "Hear are the coutents of" << filename << ";\\n";
char ch;
while (fin.get(ch)) //read character from file end
cout << ch;
cout << "Done\\n";
fin.close();
return 0;
std::cout << "Hello World!\\n";
}
Code的搬运工V1.0
以上是关于C++文件操作的简单程序的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情