C++(八)——文件操作
生活随笔
收集整理的這篇文章主要介紹了
C++(八)——文件操作
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文本文件——寫文件
#include<iostream> #include<fstream> using namespace std; //文本文件中的寫文件 void test01() {//包含頭文件,fstream//創建流對象ofstream ofs;//指定打開方式ofs.open("text.txt", ios::out);//寫內容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;//讀數據//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; }總結
以上是生活随笔為你收集整理的C++(八)——文件操作的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++(七)——多态
- 下一篇: C++(九)——职工信息管理系统