我正在尝试在 C++ 中实现享元设计。这就是我到目前为止所拥有的。
std::unordered_map<std::pair<Gdiplus::Color, float>, std::shared_ptr<Gdiplus::Pen>> mymap;
std::shared_ptr<Gdiplus::Pen> getPen(Gdiplus::Color const & color, float width )
{
std::pair<Gdiplus::Color,float> input;
input = std::make_pair(color, width);
std::unordered_map<std::pair<Gdiplus::Color, float>, std::shared_ptr<Gdiplus::Pen>>::const_iterator got = mymap.find (input);
if ( got == mymap.end() )
{
auto pen = std::make_shared<Gdiplus::Pen> ();
pen->SetColor(color);
pen->SetWidth(width);
//std::pair<Gdiplus::Color,float> input2;
mymap.insert(std::make_pair(input, pen));
return pen;
}
else
{
if (std::shared_ptr<Gdiplus::Pen> m_pen = got->second.get())
return m_Pen;
}
}
我的问题在 else 语句中。我试图弄清楚两个指针是否相同,但我收到错误消息
cannot convert from 'Gdiplus::Pen *' to 'std::tr1::shared_ptr<_Ty>'