C++文件函數(shù)有哪些及怎么使用

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

C++中的文件操作函數(shù)主要包括以下幾個(gè):

  1. std::ifstream:用于從文件中讀取數(shù)據(jù)。

使用方法示例:

#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:用于向文件中寫入數(shù)據(jù)。

使用方法示例:

#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();  // 清除錯(cuò)誤標(biāo)志
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;
}

以上是一些常用的文件操作函數(shù)的簡(jiǎn)單示例,更詳細(xì)的使用方法可以參考相關(guān)文檔或教程。

0