0

我正在尝试使用 c++ ifstream 从文本文件中读取数据,由于某种原因,下面的代码不起作用。该文件包含两个用空格分隔的数字。但是,此代码不会打印任何内容。谁能向我解释什么是错的?

#include <iostream>
#include <string>
#include <fstream>
using namespace std;

void readIntoAdjMat(string fname) {
    ifstream in(fname.c_str());
    string race, length;
    in >> race >> length;
    cout << race << ' ' << length << endl;  
    in.close();
}

int main(int argc, char *argv[]) {
    readIntoAdjMat("maze1.txt");
}
4

1 回答 1

2

您应该始终在成功的情况下测试与外部实体的交互:

std::ifstream in(fname.c_str());
std::string race, length;
if (!in) {
    throw std::runtime_error("failed to open '" + fname + "' for reading");
}
if (in >> race >> length) {
    std::cout << race << ' ' << length << '\n';
}
else {
    std::cerr << "WARNING: failed to read file content\n";
}
于 2013-07-31T23:20:14.783 回答