1

我完全困惑为什么这不起作用。我想将输入 .txt 文件的一行读入一个长字符串,然后打印出来。在我看来,最常见的方法是将其作为 C 字符串读入,但如果我可以将其作为普通的 c++ 字符串读入,我的主程序(我发布的代码只是一个示例)会简单得多. 我究竟做错了什么?

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

    int main(int argc, char *argv[]){
        ifstream inStream;
            string line;
        inStream.open(argv[1]);
        getline(inStream, line, '\n');
        inStream.close();
        cout << line;

        return 0;
    }

当我运行它时,它什么也不输出。我确信我的 .txt 文件输入正确并且里面有字符。

4

1 回答 1

2

转储getcwd()到 cout 以确保您即将在您认为存在的位置打开文件。您可能不在您认为的位置。

于 2012-09-29T19:53:58.923 回答