weinan030416

导航

2022年12月27日 #

C++文件操作

摘要: C++文件操作分为两种i/o fstream和文件指针 ofstream 和 ifstream🤪 #include<fstream>//头文件 以读方式打开 char word; ifstream in; in.open("a.txt"); in>>word; in.close(); 这种方式不会 阅读全文

posted @ 2022-12-27 16:29 楠030416 阅读(39) 评论(0) 推荐(0) 编辑