输入输出流的概念:
在C++中,输入输出是同流来完成的。C++的输出操作将一个对象的状态转换成一个字符序列,输出到某个地方。
输入操作也是从某个地方接收到一个字符序列,然后将其转换成一个对象的状态所要求的格式。
这看起来很像数据在流动,于是把接收输出数据的地方叫做目标,把输入数据来自的地方叫做源。
而输入和输出操作可以看成字符序列在源、目标以及对象之间的流动。
三、文件操作
可以总结出对文件进行操作的方法如下:
(1)包含头文件 <fstream>
(2)创建一个流对象
(3)将这个流和相应的文件关联起来
写文件
#include<iostream>
using namespace std;
#include<fstream>
#include<string>
void test01()
{
//1、包含头文件 fstream
//2、创建流对象
ofstream ofs;
//3、指定打开方式
ofs.open("text.txt", ios::out);
//4.写内容
ofs << "Hello Word" << endl;
ofs << "Hello C++";
//5、关闭文件
ofs.close();
}
int main()
{
test01();
cin.get();
}
读文件
#include<iostream>
using namespace std;
#include<fstream>
#include<string>
void test01()
{
//1、包含头文件
//2、创建流对象
ifstream ifs;
//3、打开文件 并且判断是否打开成功
ifs.open("text.txt", ios::in);
if (!ifs.is_open())
{
cout << "文件打开失败" << endl;
return;
}
//4、读数据
//第一种
//char buf[1024] = { 0 };
//while (ifs>>buf)
//{
// cout << buf << endl;
//}
//第二种
/*char buf[1024] = { 0 };
while (ifs.getline(buf, sizeof(buf)))
{
cout << buf << endl;
}*/
//第三种 (需要包含头文件<string>)
/*string buf;
while (getline(ifs,buf))
{
cout << buf << endl;
}*/
//第四种
char c;
while ((c = ifs.get()) != EOF) //EOF end of file
{
cout << c;
}
//5、关闭文件
ifs.clear();
ifs.close();
}
int main()
{
test01();
return 0;
}
二进制读文件
#include<iostream>
using namespace std;
#include<fstream>
#include<string>
class Person
{
public:
char m_Name[64]; //姓名
int m_Age; //年龄
};
void test01()
{
//1、包含头文件
//#include<fstream>
//2、创建流对象
//ofstream ofs
//3、打开文件
/*ofs.open("person.txt", ios::out | ios::binary);*/
//或者直接构造
ofstream ofs("person.txt", ios::out | ios::binary);
//4、写文件
Person p = { "张三", 18 };
ofs.write((const char*)&p, sizeof(Person));
//5、关闭文件
ofs.close();
}
int main()
{
test01();
return 0;
}
二进制读文件
#include<iostream>
using namespace std;
#include<fstream>
#include<string>
class Person
{
public:
char m_Name[64]; //姓名
int m_Age; //年龄
};
//读文件
void test01()
{
//1、包含头文件
//2、创建流对象
ifstream ifs;
//3、打开文件 判断文件是否打开成功
ifs.open("person.txt", ios::in | ios::binary);
if (!ifs.is_open())
{
cout << "文件打开失败" << endl;
return;
}
//4、读文件
Person p;
ifs.read((char*)&p, sizeof(Person));
cout << "姓名:" << p.m_Name << "年龄: " << p.m_Age << endl;
//5、关闭文件
ifs.clear();
ifs.close();
}
int main()
{
test01();
return 0;
}
::in 打开文件进行读操作,这种方式可避免删除现存文件的内容
ios::out 打开文件进行写操作,这是默认模式
ios::ate 打开一个已有的输入或输出文件并查找到文件尾开始
ios::app 在文件尾追加方式写文件
ios::binary 指定文件以二进制方式打开,默认为文本方式
ios::trunc 如文件存在,将其长度截断为零并清除原有内容,如果文件存在先删除,再创建