中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
台南市| 安乡县| 延边| 盖州市| 丰镇市| 清河县| 博客| 沾益县| 万载县| 贡觉县| 侯马市| 斗六市| 永定县| 和田市| 分宜县| 攀枝花市| 禹城市| 蒲江县| 连南| 横山县| 平顺县| 如皋市| 襄汾县| 蚌埠市| 扶余县| 庆安县| 翁牛特旗| 大厂| 南京市| 普兰店市| 黑山县| 和硕县| 平顶山市| 长汀县| 长顺县| 庆云县| 昌吉市| 柳江县| 裕民县| 普陀区| 四川省|