91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C++文件函數有哪些及怎么使用

c++
小億
99
2023-08-17 23:15:01
欄目: 編程語言

C++中的文件操作函數主要包括以下幾個:

  1. std::ifstream:用于從文件中讀取數據。

使用方法示例:

#include <fstream>
#include <iostream>
int main() {
std::ifstream file("example.txt");
if (file.is_open()) {
std::string line;
while (std::getline(file, line)) {
std::cout << line << std::endl;
}
file.close();
} else {
std::cout << "Unable to open file" << std::endl;
}
return 0;
}
  1. std::ofstream:用于向文件中寫入數據。

使用方法示例:

#include <fstream>
#include <iostream>
int main() {
std::ofstream file("example.txt");
if (file.is_open()) {
file << "Hello, World!" << std::endl;
file.close();
} else {
std::cout << "Unable to open file" << std::endl;
}
return 0;
}
  1. std::fstream:用于既能讀取又能寫入文件。

使用方法示例:

#include <fstream>
#include <iostream>
int main() {
std::fstream file("example.txt");
if (file.is_open()) {
std::string line;
while (std::getline(file, line)) {
std::cout << line << std::endl;
}
file.clear();  // 清除錯誤標志
file.seekg(0, std::ios::end);  // 定位到文件末尾
file << "Hello, World!" << std::endl;
file.close();
} else {
std::cout << "Unable to open file" << std::endl;
}
return 0;
}
  1. std::remove:用于刪除文件。

使用方法示例:

#include <iostream>
int main() {
if (std::remove("example.txt") != 0) {
std::cout << "Unable to delete file" << std::endl;
}
return 0;
}

以上是一些常用的文件操作函數的簡單示例,更詳細的使用方法可以參考相關文檔或教程。

0
贵南县| 儋州市| 化州市| 台州市| 麻城市| 龙游县| 怀来县| 读书| 丘北县| 那坡县| 巴东县| 西乌| 固始县| 张家口市| 洛隆县| 通榆县| 密山市| 许昌市| 申扎县| 文化| 神池县| 洞头县| 安仁县| 遂溪县| 犍为县| 汉源县| 青神县| 类乌齐县| 台东县| 沧源| 永德县| 阳东县| 沂南县| 安图县| 祁连县| 宁陵县| 双鸭山市| 凌海市| 贡嘎县| 吕梁市| 古蔺县|