在C++中,可以使用以下方法讀取文件的行數:
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt");
if (!file) {
std::cerr << "Failed to open the file." << std::endl;
return 1;
}
int lineCount = 0;
std::string line;
while (std::getline(file, line)) {
lineCount++;
}
std::cout << "The file has " << lineCount << " lines." << std::endl;
file.close();
return 0;
}
上述代碼首先打開一個名為"example.txt"的文件,并檢查是否成功打開。然后,使用std::getline函數逐行讀取文件內容,每讀取一行,行數加1。最后,輸出文件的行數。
請確保在使用該代碼時將文件名替換為你要讀取的實際文件名。