【C++】I/O流文件字符串读写

本文介绍了C++中的文件读写,详细讲解了fstream头文件中ofstream和ifstream的使用,包括如何进行文本读写和自定义类型的数据操作。同时,还探讨了C++中的字符串读写,特别是sstream头文件中的ostringstream和istringstream的应用。
摘要由CSDN通过智能技术生成

一、operator bool

while()里面可以是指针,也可以是整型

这里面用了一个operator bool的类型

#include <iostream>

using namespace std;

class A
{
   
public:
	operator bool()
	{
   
		return _a != 0;
	}
	int _a;
};

int main()
{
   
	A a;

	while (a)
	{
   
		cin >> a._a;
	}

	return 0;
}

二、C++中的文件读写

1. fstream头文件

image-20220415140820243

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

// 使用文件IO流用文本及二进制方式演示读写配置文件
struct ServerInfo
{
   
	char _ip[32];	// ip
	int _port;		// 端口
};

class ConfigManage
{
   
public:
	ConfigManage(const char* filename)
	{
   

	}
private:

	string _filename;
};

int main()
{
   
	

	return 0;
}

1. ofstream

构成

image-20220415145909406

失败会抛异常

需要文件名的地址,用c_str

image-20220415150331187

如果要写入文本形式,可以省略

这里使用完不用close,因为析构函数是close


如何写?

ofstream里有个函数write

image-20220415150735383

参数:数据的地址(注意强转成const char*),以及数据的大小(用sizeof获得)


测试:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

// 使用文件IO流用文本及二进制方式演示读写配置文件
struct ServerInfo
{
   
	char _ip[32];	// ip
	int _port;		// 端口
};

class ConfigManage
{
   
public:
	ConfigManage
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

凛音Rinne

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值