在C++中,可以使用標準庫函數來判斷文件結尾。以下是一個示例代碼:
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt");
if (!file.is_open()) {
std::cerr << "Could not open file." << std::endl;
return 1;
}
file.seekg(0, std::ios::end);
std::streampos end = file.tellg();
if (end == 0) {
std::cout << "File is empty." << std::endl;
} else {
file.seekg(-1, std::ios::end);
char c;
file.get(c);
if (c == '\n') {
std::cout << "File ends with a newline character." << std::endl;
} else {
std::cout << "File does not end with a newline character." << std::endl;
}
}
file.close();
return 0;
}
在這個示例中,我們首先打開一個文件并獲取文件的大小。然后我們移動文件指針到文件末尾,并讀取最后一個字符。最后我們判斷文件是否以換行符結尾。