Bootstrap

C++文件读写(2)fread与fwrite

0. 头文件与命名空间

在vs中直接使用fopen函数会报错,需在项目->属性->c/c++->预处理器->点击预处理器定义中添加 _CRT_SECURE_NO_WARNING

#include <iostream>
#include <string>
// 在项目->属性->c/c++->预处理器->点击预处理器定义中添加 _CRT_SECURE_NO_WARNINGS
using namespace std;

1. 文件读写实现

很简单,直接写,但是有一些细节需要注意,注释中详细解释

int main() {
    // 读取文件,fopen的使用需将路径转化为c字符串的形式
	string filename = "test.txt";
	FILE * file1 = fopen(filename.c_str(), "w");
    // 定义字符串,方式1
	//string h1 = "hello world1";
	//string h2 = "hello world2";
	//string h3 = "hello world3";
	//string h4 = "hello world4";
    // 定义字符串,方式2
	char* h1 = "hello world1";
	char* h2 = "hello world2";
	
;