日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

C++(八)——文件操作

發(fā)布時間:2025/3/21 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C++(八)——文件操作 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

文本文件——寫文件

#include<iostream> #include<fstream> using namespace std; //文本文件中的寫文件 void test01() {//包含頭文件,fstream//創(chuàng)建流對象ofstream ofs;//指定打開方式ofs.open("text.txt", ios::out);//寫內(nèi)容ofs << "姓名:張山" << endl;ofs << "年齡:15" << endl;ofs << "性別:無" << endl;ofs.close(); } int main() {test01();return 0; }

文本文件——讀文件

#include<iostream> #include<fstream> #include<string> using namespace std;void test01() {ifstream ifs;ifs.open("text.txt", ios::in);if (!ifs.is_open())cout << "文件打開失敗" << endl;//讀數(shù)據(jù)//char buf[1024] = { 0 };/*while (ifs >> buf) {cout << buf << endl;}*///while (ifs.getline(buf, sizeof(buf))) //{// cout << buf << endl;//}/*string buf;while (getline(ifs, buf)) {cout << buf << endl;}*/char c;while ((c = ifs.get()) != EOF) {cout << c;}ifs.close(); }int main() {test01();return 0; }

二進制文件——寫文件

#include<iostream> #include<fstream> using namespace std; //二進制文件,寫文件 class Person { public:char m_name[65];int m_age; }; void test01() {ofstream ofs("person.txt", ios::out | ios::binary);//ofs.open("person.text", ios::out | ios::binary);Person p = { "飛天大草", 666 };ofs.write((const char*)&p, sizeof(Person));ofs.close(); }int main() {test01();return 0; }

二進制文件——讀文件

#include<iostream> #include<fstream> using namespace std; class Person { public:char m_name[64];int m_age;}; void test01() {ifstream ifs;ifs.open("person.txt", ios::in | ios::binary);if (!ifs.is_open()) {cout << "打開文件失敗" << endl;return;}Person p;ifs.read((char*)&p, sizeof(Person));cout << "姓名:" << p.m_name << "年齡:" << p.m_age << endl;ifs.close();} int main() {test01();return 0; }

總結(jié)

以上是生活随笔為你收集整理的C++(八)——文件操作的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。