gpt4 book ai didi

c++ - 如何为类成员重载运算符<<?

转载 作者:行者123 更新时间:2023-11-30 03:48:56 25 4
gpt4 key购买 nike

假设我想打印一个类成员,我试图重载 operator<<对于成员(member):

#include <iostream>
#include <map>

template <typename K, typename V>
class MyClass {
public:
typedef std::map<K, V> MyMapType;
MyMapType mymap;
friend std::ostream& operator<<(
std::ostream& _os, const typename MyClass<K, V>::MyMapType& _map) {
for (auto p : _map) _os << p.first << std::endl;
}
};

int main(int argc, char const* argv[]) {
MyClass<std::string, int> c;
c.mymap["a"] = 1;
c.mymap["b"] = 2;
std::cout << c.mymap << std::endl;
return 0;
}

但是编译器似乎忽略了这个定义:

error: invalid operands to binary expression ('ostream' (aka 'basic_ostream<char>') and 'MyMapType' (aka
'map<std::__1::basic_string<char>, int>'))
std::cout << c.mymap << std::endl;
~~~~~~~~~ ^ ~~~~~~~

那么我该如何正确地重载呢?我是否必须使其成为类中的类,或者我是否需要提供 std::map 的派生?

最佳答案

它只需要在类之外:

template <typename K,typename V>
std::ostream& operator<<(
std::ostream& _os,
const std::map<K,V> _map
) {
for (auto& p : _map) _os << p.first << "\n";
return _os;
}

这是可行的,因为 MyMapType 只是一个 std::map 的别名,所以如果你打印一个 MyMapType 的实例,你只是打印一个常规的 std::map

您的原始示例不起作用,因为您没有 MyClass 类型的参数,因此无法在 MyClass 中找到该函数。友元函数只有在类外声明或具有类类型的参数时才能在类外找到。

关于c++ - 如何为类成员重载运算符<<?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32900983/

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