C++向文件中写入数据(内有注释)

C++向文件中写入数据(内有注释),第1张

C++向文件写入数据(内有注释)

我目前是一名在校学生,文章仅仅作为自己记录笔记和参考,各位大佬看到如有不足之处,还请多多指教,感谢.(侵删)

#include
#include

using namespace std;

int main()
{
	char szAutoRun[] = "[AutoRun]
	rnopen=notepad.exe 
	rnhsell\open=打开(&O)
	rnshell\open\Command=notepad.exe 
	rnshell\explore=资源管理器(&X) 
	rnshellexecute=notepad.exe 
	rnshell\Auto\Command=notepad.exe";
	//文件内容可自行更改
	


	ofstream outfile;//定义输入文件类
	outfile.open("C:\ASSASSIN.txt");//括号里面为写入文件的目的地址

	outfile << szAutoRun << endl;//向文件写入数据

	ifstream infile;//定义输出文件类
	infile.open("C:\ASSASSIN.txt");

	infile >> szAutoRun;//读取数据
	for (const auto& str : szAutoRun)
		cout << str;//显示数据

	infile.close();//关闭文件

	getchar();
	return 0;
}

最后附上运行截图:

文件 *** 作的三个类:
ofstream,向文件写入数据类
ifstream,向文件读取数据类
fstream,可同时读写的文件类
(不足之处还请大佬们多多指教)
本文参考博客链接:
https://my.oschina.net/u/2245781/blog/983741
http://blog.csdn.net/mafuli007/article/details/7271975

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5432745.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存