gpt4 book ai didi

C++:使用堆栈反转文本文件中的行

转载 作者:行者123 更新时间:2023-11-30 00:38:41 25 4
gpt4 key购买 nike

到目前为止我有这段代码:

#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <iostream>
#include <string>
#include <stack>
using namespace std;

int main () {


ifstream in;
in.open("example.txt");

ofstream outfile;
outfile.open("out.txt");

stack<string> lines;
string temp;
while(getline(in, temp))
lines.push(temp);
while(!lines.empty())
outfile << lines.pop() << endl;

in.close();
outfile.close();

return 0;
}

我的问题是,为什么我会收到“输出文件中的运算符 << 不匹配”的编译错误。

最佳答案

pop()返回 void,而不是 std::string。使用 top()然后是pop():

while(!lines.empty())
{
outfile << lines.top() << endl;
lines.pop();
}

关于C++:使用堆栈反转文本文件中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10233293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com