gpt4 book ai didi

C++ 为任意集合重载 ostream <<

转载 作者:行者123 更新时间:2023-11-28 02:19:12 25 4
gpt4 key购买 nike

我正在尝试重载 << 运算符,这样我就可以做,例如,

list<string> string_list = ...;
vector<double> double_vector = ...;
set<list<int>> int_list_set = ...;
cout << string_list << double_vector << int_list_set << endl;

该站点的另一位用户 Chris Redford 在 How to print out the contents of a vector? 上发布了一些使用 vector 执行此操作的有用代码。 .我尝试调整他的代码以与其他类型的集合一起使用,如下所示:

template <template <typename...> class collection, typename T>
std::ostream& operator<<(std::ostream& out, const collection<T>& c) {
out << "[ ";
out << *c.begin();
for(auto it=next(c.begin(),1); it!=c.end(); ++it) {
out << " , ";
out << *it;
}
out << " ]";
return out;
}

显然,在编写模板方面我是个菜鸟,所以欢迎任何有关阅读 Material 的提示。希望很明显,我希望它适用于任何可以执行 .begin() 和 .end() 的操作。使用

编译时
int main(int argc, char **argv) {
list<string> words;
words.push_back("hello");
words.push_back("world");
cout << words << endl;
}

,我收到一个编译器错误,提示“'operator<<' 的模糊重载”和一堆我不明白的乱码。我认为 gcc 可能试图重新定义 << 对 std::string 的意义,但我不确定。理想情况下,我想告诉编译器不要尝试为已经定义的类型重新定义此操作。我也在使用 -std=C++14,所以我愿意巧妙地使用 auto。有什么建议吗?

编辑:更正了原始问题中对 T... 的错误使用。

最佳答案

刚刚找到以下内容: Pretty-print C++ STL containers

解决方案看起来相当复杂。如果您想寻求更简单的解决方案,您可以执行以下操作:

编写模板 operator<<很可能与 operator<< 的任何现有声明冲突.你可以做的是使用 print按照已经提议的方式运行并编写一些较小的包装器,例如:

template <class collection>
std::ostream& printCollection (std::ostream& out, const collection& c) {
out << "[ ";
out << *c.begin();

for(auto it = next(c.begin(), 1); it != c.end(); ++it) {
out << " , ";
out << *it;
}
out << " ]";
return out;
}

template <typename T>
std::ostream& operator<< (std::ostream& os, std::list<T>& collection) {
return printCollection(os, collection);
}

// ...

关于C++ 为任意集合重载 ostream <<,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33109805/

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