gpt4 book ai didi

c++ - MinGW 流水线和迭代器包括

转载 作者:太空宇宙 更新时间:2023-11-04 14:20:40 25 4
gpt4 key购买 nike

当我编译它时,我使用 MINGW32 遇到了大约 200 行编译器错误。我尝试使用 > 将其通过管道传输到文本文件,但没有成功。但是现在在 MINGW32 文件上调用错误。

此代码来自SO Post

代码的解释可以在这里找到 SO Post.

using namespace std;
template <typename Container> ostream& operator<<(ostream& os, const Container& c)
{
copy(c.begin(), c.end(), ostream_iterator<typename Container::value_type>(os, " "));
return os;
}

最佳答案

1) 不要忘记 #include <iterator> .

2) 捕获编译器的标准错误流而不是标准输出。使用 2> .

关于c++ - MinGW 流水线和迭代器包括,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7942390/

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