我正在存储一个std::map
ofstd::shared_ptr<V>
作为值。
从一个函数中,我想返回对该映射的引用,但是std::shared_ptr<const V>
作为值类型,这可能吗?
这是我想要实现的目标:
#include <map>
#include <memory>
struct A {
std::map<int, std::shared_ptr<int>> map;
const std::map<int, std::shared_ptr<const int>>& ret1() const {
return map;
}
};
但是这段代码无法编译:
error: invalid initialization of reference of type
'const std::map<int, std::shared_ptr<const int> >&'
from expression of type 'const std::map<int, std::shared_ptr<int> >'
谢谢